mysql_connect 连接生命周期
当生成 @mysql_connect($server, $user, $password)
的脚本死掉时会发生什么?
它能活多久?
谢谢你!
What happes when the script that made @mysql_connect($server, $user, $password)
dies?
How long does it live?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://www.phpdig.net/ref/rn41re774.html
http://www.phpdig.net/ref/rn41re774.html
当脚本结束时它将关闭,但更好的做法是使用 mysql_close() 显式关闭它 - 当您不需要它时释放链接。
It will close when your script ends, but it's better practice to close it explicitly using
mysql_close()
- releasing the link when you don't need it.