How to implement PHP JSON installation in centos environment_PHP tutorial

WBOY
Release: 2016-07-15 13:32:56
Original
1281 people have browsed it

1. Download the source file package:

wget http://www.aurore.net/projects/php-json/

2. Unzip

tar xvjf php-json-ext-1.2.0.tar.bz2

3. Enter the directory

cd php-json-ext -1.2.0

4. Initialize the PHP environment

phpize

reported an error: phpize commend not found

You need to install phpizeThis can be installed in yum
yum -y install php-devel

If you still cannot complete the PHP JSON installation, it means there is a problem with your compilation tool, just install it

yum -y install autoconf
yum -y install automake
yum -y install libtool

run phpize

(successful)

5../configure

6.make

7.makeinstall

8. Check whether the PHP JSON installation is successful

find / -name '*json.so'

. /usr/lib/php/modules/json.so

Instructions already exist

9. Modify php.ini

I include a folder in php.ini/ etc/php.d

Add a json.ini

vim json.ini

in this file with the following content:

extension=json.so

10. Restart the service

11. In phpinfo() you will see

json support enabled

json version

The above are all the steps for PHP JSON installation.


http://www.bkjia.com/PHPjc/446099.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446099.htmlTechArticle1. Download the source file package: wget http://www.aurore.net/projects/php-json/ 2. Unzip tar xvjf php-json-ext-1.2.0.tar.bz2 3. Enter the directory cd php-json-ext-1.2.0 4. Initialize the PHP environment phpize report...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!