PHP7 redis扩展安装
目前PHP官网的PECL上日常用到的大部分PHP扩展组件都没有适配PHP7的,这源于PHP7的一些新特性与依赖关系和PHP5有很多不同之处,所以很多组件都需要开发者们经过一段时间的开发以适配PHP7。
PHP官方库里没有PHP7的redis扩展:https://pecl.php.net/package/redis
编译安装下载github地址:https://github.com/phpredis/phpredis/tree/php7
Windows:https://github.com/neil-chen/NeilChen/tree/master/php_redis
注:php7目录下有php7.dll的选择nts版本;有php7ts.dll的选择ts版本。
Linux安装:
cd phpredis
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make
make install
上面的操作完成后,会在/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626目录下生成出一个redis.so文件,下面我们需要把这个so文件加到php.ini中
vi /usr/local/php/etc/php.ini
具体设置如下:
extension_dir="/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/"
extension=redis.so
原贴地址:http://php.upupw.net/news/4/5305.html
上一篇: PHP 中的时间函数