php如何安裝memcache擴充套件

2020-07-16 10:06:38

1、下載並解壓縮

wget http://pecl.php.net/get/memcache-2.2.7.tgz
tar zxvf memcache-2.2.7.tgz

2、編譯

根據實際情況選擇使用phpize和php-config。

[[email protected] 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
[[email protected] memcache-2.2.7]# ./configure --enable-memcache --with-php-config=/usr/local/php/bin/php-config

3、安裝

[[email protected] memcache-2.2.7]# make install
Installing shared extensions:   /usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/

4、修改php.ini並重新啟動php-fpm

extension=memcache.so

更多相關教學請關注TW511.COM

以上就是php如何安裝memcache擴充套件的詳細內容,更多請關注TW511.COM其它相關文章!