如何正确释放 PDO 实例

发布于 2024-08-19 00:01:54 字数 217 浏览 7 评论 0原文

例如:

$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 结果和连接的正确方法是吗?

for example:

$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?

Is that correct way to free all SQL results and connections?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对岸观火 2024-08-26 00:01:54

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

you could do that, but often not necessary. if created in a function and no other vars are using it, $db will release its contents when it goes out of scope (usually at the end of the function). if $db is a global, it will be released when the script ends.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文