Mac 安裝PHP Redis 擴展

其實 Mac 安裝 Redis 仍是很簡單,如下爲我的搭建配置。
注意:文章中的「*」表明任意版本號php

安裝 Redis 服務

  • 安裝
brew install redis
  • 使用
# 啓動
redis-server

啓動成功界面

另開一個命令窗口,能夠使用 Redis 命令在 redis 服務上執行操做。redis

redis-cli

安裝 php-redis 擴展

下文中的配置目錄可根據記幾個的 PHP 配置自行修改。vim

tar -xzvf redis-4.*.tgz
  • 經過phpize生成編譯configure配置文件
cd redis-4.*/
phpize
./configure --with-php-config=/usr/local/opt/php\@7.*/bin/php-config
  • 編譯
make
make install
  • 配置 php.ini文件
    /usr/local/etc/php/7.2/php.ini
extension="redis.so"
  • 測試 訪問 localhost/redis.php
<?php
//實例化redis對象
$redis = new redis();
//鏈接redis,第一個參數是redis服務的IP127.0.0.1是本身的,6379是端口號
$redis->connect('127.0.0.1', 6379);
echo "Server is running: " . $redis->ping();

輸出:Server is running: +PONG.net

相關文章
相關標籤/搜索