thinkphp5 手动关闭mysql连接
时间:2021-01-06 13:50:12
收藏:0
阅读:204
在 thinkphp/library/think/db/Query.php 下添加一个方法
//关闭数据库 public function close() { $this->connection->close(); }
在需要的关闭的地方引入Db调用
use think\Db; Db::close();
原文:https://www.cnblogs.com/sunhaoyue/p/14239863.html
评论(0)