热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

thinkphp5中__destruct何时执行?

12345678910111213141516

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

namespace app\shop\drive;

class Redis {

    public $handler;

    public function __construct(){

        $redis = new \Redis();

        $redisCOnf= config('cache.redis');

        $redis->connect($redisConf['host'], $redisConf['port']);

        $redis->auth($redisConf['password']);

        $this->handler = $redis;

    }



    public function __destruct(){

        $this->handler->close();

    }

}

控制器中



1
2
3
4
5
6
7
8
9
10
11
12
13
    ...

    public $redis, $prefix;

    protected function _initialize(){

        $this->initRedis();

        var_dump($this->redis->info()); //出错,redis连接已关闭

    }

    private function initRedis()

    {

        $redis = new Redis;

        $this->redis = $redis->handler;

        var_dump($this->redis->info()); //正常

        $this->prefix = config('cache.redis')['prefix'];

    }

1、这是啥原因?
2、有必要手动关闭redis连接吗?


   



推荐阅读
author-avatar
痞子343
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有