PHP Velho Oeste 2024

"counter" 拡張モジュール - サンプル

目次

序文

この Zend のドキュメントでは、ひとつのサンプルモジュールを通して さまざまな考え方を説明していきます。サンプルとして使用するのが "counter" 拡張モジュールです。これは実在のものではありませんが Zend モジュールとしてひととおり機能するものであり、 さまざまな Zend API をできるだけ多く使用するようにしています。 この章では、利用者側から見たこのサンプルモジュールのインターフェイスを説明します。

注意: "counter" は、実用性はまったくありません。 というのも、その機能は PHP のコードレベルではるかに効率的に実装できるものだからです。

add a note add a note

User Contributed Notes 1 note

up
0
ohcc at 163 dot com
5 years ago
After testing PHP versions from 4.4 to 7.2 on Windows, I found that the Counter extension is actually not supported by PHP.

1. The COUNTER_* constants and the counter_* functions are not defined.

2. The Counter class can not be found.

3. The Counter extension can not be found on the PECL site.
To Top