1.下载
wget https://codeload.github.com/phpredis/phpredis/zip/develop -O phpredis.zip
2.解压
unzip phpredis.zip
3.进入文件夹
cd phpredis-develop
4.预编译,我的phpize在这个位置
/usr/local/webserver/php-7.1.7/bin/phpize
5.编译,我的php-config在这个位置/usr/local/webserver/php-7.1.7/bin/php-config
./configure --with-php-config=/usr/local/webserver/php-7.1.7/bin/php-config
6.执行和安装
make //执行
make test //测试
make install //安装
7.文件已经自动生成到php扩展的目录下,将扩展写入php.ini,我的php.ini在/usr/local/webserver/php-7.1.7/etc/
echo "extension=redis.so" >> /usr/local/webserver/php-7.1.7/etc/php.ini
8.重启php-fpm。
9.查看扩展是否安装成功
/usr/local/webserver/php-7.1.7/bin/php -m
完成。
转载自:https://blog.csdn.net/buyueliuying/article/details/78991081