Rumah > Artikel > pembangunan bahagian belakang > php安装memcache扩展的方法是什么
php安装memcache扩展的方法:1、下载并解压缩扩展文件;2、编译安装扩展;3、打开php.ini配置文件,添加配置【extension=memcache.so】;4、重启php-fpm。
安装步骤如下:
(学习视频推荐:java课程)
1、下载并解压缩
wget http://pecl.php.net/get/memcache-2.2.7.tgz tar zxvf memcache-2.2.7.tgz
2、编译
根据实际情况使用phpize和php-config
[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、安装
[root@www memcache-2.2.7]# make install Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/
4、修改php.ini文件
添加 extension=memcache.so
5、重启php-fpm
相关推荐:php培训
Atas ialah kandungan terperinci php安装memcache扩展的方法是什么. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!