如何正确释放PDO实例

时间:2010-01-22 12:00:50

标签: pdo

例如:

$db = new PDO();
// some code using $db here
// and next, i want to free this var and close all connection and so on
$db = NULL; // or how correctly?

这是释放所有SQL结果和连接的正确方法吗?

1 个答案:

答案 0 :(得分:4)

你可以这样做,但通常没有必要。如果在函数中创建并且没有其他vars正在使用它,$ db将在超出范围时释放其内容(通常在函数的末尾)。如果$ db是全局的,它将在脚本结束时释放。