美文网首页
PHP 7 安装 Redis 扩展

PHP 7 安装 Redis 扩展

作者: 水冰棍 | 来源:发表于2016-11-17 19:59 被阅读0次

操作系统:Centos 7.2.1511;PHP 版本:7.0.13

http://pecl.php.net/ 搜索 redis,并且下载下来

安装的主要流程

tar -zxvf 解压源码
源码目录当中 phpize
./configure --with-php-config=你的 php-config 命令绝对路径
make
cp modules/redis.so 到你的 PHP 扩展目录
编辑 php.ini 文件,将 redis.so 添加上
重启 PHP 服务
php -m 或者 phpinfo() 就能看到了

附:

相关文章

网友评论

      本文标题:PHP 7 安装 Redis 扩展

      本文链接:https://www.haomeiwen.com/subject/sbxjpttx.html