php7.1 扩展安装memcache 扩展

wget https://github.com/websupport-sk/pecl-memcache/archive/NON_BLOCKING_IO_php7.zip
unzip NON_BLOCKING_IO_php7.zip
cd pecl-memcache-NON_BLOCKING_IO_php7/
/usr/local/Cellar/[email protected]/7.1.20/bin/phpize 
./configure --enable-memcache --with-php-config=/usr/local/Cellar/[email protected]/7.1.20/bin/php-config
make 
make install
然后把extension = "/usr/local/Cellar/[email protected]/7.1.20/pecl/20160303/memcache.so"  
添加到/usr/local/etc/php/7.0/php.ini 结尾就行
最后重启php-fpm

猜你喜欢

转载自blog.51cto.com/quietnight/2150710