谁能帮助我在MAC OSX中安装php-redis。

brew install php-redis

不工作。
pecl install php-redis

也无法正常工作-



homebrew_error

最佳答案

git clone https://www.github.com/phpredis/phpredis.git
cd phpredis
phpize && ./configure && make && sudo make install

在您的php.ini中添加extension=redis.so
brew services restart [email protected]
make test

你可以检查工作与否
php -r "if (new Redis() == true){ echo \"\r\n OK \r\n\"; }"

关于php - 安装phpredis MAC OSX,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51908004/

10-15 09:14