Fatal error: Class 'Redis' not found

后端 未结 3 2009
终归单人心
终归单人心 2021-02-18 23:36

I\'ve installed Redis on my ubuntu 14 server with phpredis extension. Im using Nginx server. I have php testing script

$redis=new Redis() or die(\"Cannot load Re         


        
3条回答
  •  你的背包
    2021-02-18 23:48

    You have installed redis but not php-redis. you can simply run the command below to install php-redis

    sudo apt-get install php-redis
    

提交回复
热议问题