Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHP 文档说“mysql_close() 不会关闭持久链接”。
和mysqli (mysqli::close()) 一样吗?
否。该mysql_close()功能仅关闭非持久链接。您无法关闭永久链接。
mysql_close()
mysql_close() 关闭与指定链接标识符关联的 MySQL 服务器的非持久连接。如果未指定 link_identifier,则使用最后打开的链接。
来源:php.net
Mysqli 包含一个内置的自动清理,它将关闭一个处理程序。
您可能想阅读http://php.net/manual/en/mysqli.persistconns.php