PHP 7 安装 Redis 扩展

操作系统: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() 就能看到了

附:

  • Linux Centos 7 安装 Redis 以及后台启动
  • Centos 7 下 Nginx、MySQL、PHP 环境搭建(安装、环境变量、自启动)

你可能感兴趣的:(PHP 7 安装 Redis 扩展)