与 MySQLi 相比,PDO 只是一个相当简单的问题。
使用 MySQLi,要关闭连接,您可以执行以下操作:
$this->connection->close();
但是,对于 PDO,它声明您使用以下方式打开连接:
$this->connection = new PDO();
但是要关闭您将其设置为的连接null
。
$this->connection = null;
这是正确的吗?这实际上会释放 PDO 连接吗?(我知道它设置为null
。)我的意思是使用 MySQLi 你必须调用一个函数 ( close
) 来关闭连接。PDO 是否像断开连接一样容易= null
?还是有关闭连接的功能?