Home >Backend Development >PHP Tutorial >PHP7 redis扩展安装

PHP7 redis扩展安装

WBOY
WBOYOriginal
2016-06-23 13:06:44934browse

PHP7.0.0正式版发布有一段时间了,但是与之对应的扩展组件非常之少,特别是windows上用PHP7搭建开发平台,组件太少肯定是影响开发的。

目前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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn