学无先后,达者为师

网站首页 PHP其他 正文

PHP实例化redis时报错not found

更新时间: 2019-11-27 PHP其他

实例化时代码如下

$redis=new Redis();
$redis->connect('127.0.0.1',6379);

后来百度了半天发现Redis()前面需要加\

$redis=new \Redis();
$redis->connect('127.0.0.1',6379);



栏目分类
最近更新