例如:
$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结果和连接的正确方法吗?
答案 0 :(得分:4)
你可以这样做,但通常没有必要。如果在函数中创建并且没有其他vars正在使用它,$ db将在超出范围时释放其内容(通常在函数的末尾)。如果$ db是全局的,它将在脚本结束时释放。