Dutch PHP Conference 2025 - Call For Papers

インストール手順

JSON 拡張モジュールは、デフォルトで PHP コアに組み込まれています。

PHP 8.0.0 以降、JSON 拡張モジュールは PHP コアに組み込まれているため、 常に有効になっています。

この PECL 拡張モジュールをインストールする方法は、 マニュアルの PECL 拡張モジュールのインストール という章にあります。 新規リリース・ダウンロード・ソースファイル・管理者情報・CHANGELOG といった関連する情報については、次の場所にあります。 » https://pecl.php.net/package/json

add a note

User Contributed Notes 3 notes

up
-3
Anonymous
4 years ago
even though the manual says the json extension is enabled by default and compiled into the core, I had to do a "yum install php-json" on centos 8 running php 7.2
up
-4
ferenczy at NOSPAM dot volny dot cz
10 years ago
On Ubuntu 13.10 you have to install this extension first (PHP 5.5.3):

apt-get install php5-json

(Don't forget to restart web server.)
up
-4
YesCT
10 years ago
on CentOS php 5.5.13 had to:
yum install php55u-pecl-jsonc php55u-pecl-jsonc-devel
To Top