我做了什么:
mysqli.allow_persistent = Off
mysqli.allow_persistent = On
我什至尝试:
ini_set('mysqli.allow_persistent', "Off");
为什么以及如何解决此问题?
答案 0 :(得分:1)
mysqli.allow_persistent
实际上需要一个整数值,根据文档,默认值为1
。这可能有点令人困惑,因为mysql.allow_persistent
(不带i)使用“打开/关闭”切换,并且在某些旧版本的PHP中,“打开/关闭”也适用于mysqli
。
要禁用它,请在您的php.ini中使用它:
mysqli.allow_persistent = 0