Home > Article > Backend Development > What is the method to install memcache extension in php
How to install memcache extension in php: 1. Download and decompress the extension file; 2. Compile and install the extension; 3. Open the php.ini configuration file and add the configuration [extension=memcache.so]; 4. Restart php-fpm.
The installation steps are as follows:
(Learning video recommendation: java course)
1. Download and decompress
wget http://pecl.php.net/get/memcache-2.2.7.tgz tar zxvf memcache-2.2.7.tgz
2, compile
Use phpize and php-config according to the actual situation
[root@www memcache-2.2.7]# /usr/local/php/bin/phpize Configuring for: PHP Api Version: 20131106 Zend Module Api No: 20131226 Zend Extension Api No: 220131226
3, install
[root@www memcache-2.2.7]# make install Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/
4, modify php .ini file
Add extension=memcache.so
5. Restart php-fpm
Related recommendations: php training
The above is the detailed content of What is the method to install memcache extension in php. For more information, please follow other related articles on the PHP Chinese website!