Class 'Home\Controller\Redis' not found

thinkphp3.2不加” \ ” 会报 Class ‘Home\Controller\Redis’ not found

    $redis = new \Redis();
    $redis->connect('127.0.0.1',6379);
    $redis->set('name',1);
    $mylist =$redis->get('name');

    print_r($mylist);

猜你喜欢

转载自blog.csdn.net/qq_39414590/article/details/82726027