PHP5.1下安装json扩展

来源:岁月联盟 编辑:exp 时间:2012-09-24

     环境:centos 5.0 ,php 5.1.6

因为需要phpize,所以安装php-devel。phpize 是为php扩展提供编译环境。
 wget http://pecl.php.net/get/json -O json-1.2.1.tgz
tar -xf json-1.2.1.tgz
cd json-1.2.1
phpize
./configure
make
make install
echo "; Enable json extension module" >> /etc/php.d/json.ini
echo "extension=json.so" >/etc/php.d/json.ini