PHP Velho Oeste 2024

インストール手順

PHP 5.1.2 以降、ハッシュ拡張モジュールは本体にバンドルされ、デフォルトでコンパイルされるようになります。

configure 時に --disable-hash を指定することで明示的に無効にすることも可能です。それ以前の バージョンの PHP にハッシュ拡張モジュールを組み込むには、 » PECL モジュール

PHP 7.4.0 以降、ハッシュ拡張モジュールはコア PHP 拡張モジュールとなり、常に有効になります。

add a note add a note

User Contributed Notes 1 note

up
0
rdlowrey at php dot net
9 years ago
Though this page claims hash is part of core , you will not have it if you use the "--disable-all" switch in your config. In this case it is necessary to also use "--enable-hash" to access the associated functionality.
To Top