当前位置:Gxlcms > PHP教程 > phpMyAdmin一直提示Warning.mysqli_init()什么错误,且非常缓慢

phpMyAdmin一直提示Warning.mysqli_init()什么错误,且非常缓慢

时间:2021-07-01 10:21:17 帮助过:25人阅读

不知道是不是配置的问题,我将mysql全部重装之后还是如此,用mysql的官方workbench没什么问题。
php中直接执行mysqli_init()也是报Property access is not allowed yet的错误。。。


回复讨论(解决方案)

有使用prepare??

This parameter (and presumably any other parameter in mysqli_stmt) will raise an error with the message "Property access is not allowed yet" if the statement was not prepared properly, or not prepared at all.

To prevent this, always ensure that the return value of the "prepare" statement is true before accessing these properties.

是不是你的mysqli的扩展没有打开?

同二楼....

是不是你的mysqli的扩展没有打开?


php中配置好了的,用phpinfo()查看也是有mysqli扩展的。

有使用prepare??

This parameter (and presumably any other parameter in mysqli_stmt) will raise an error with the message "Property access is not allowed yet" if the statement was not prepared properly, or not prepared at all.

To prevent this, always ensure that the return value of the "prepare" statement is true before accessing these properties.


不太懂。。。 不知道Property access is not allowed yet到底是在说什么~~

if the statement was not prepared properly, or not prepared at all
这个提示才是关键

This parameter (and presumably any other parameter in mysqli_stmt) will raise an error with the message "Property access is not allowed yet" if the statement was not prepared properly, or not prepared at all.

To prevent this, always ensure that the return value of the "prepare" statement is true before accessing these properties.

请问解决了吗,我也遇到同样的问题了

贴出你的13行代码悄悄

贴出你的13行代码悄悄


没有代码呀,,就是phpMyAdmin一打开就错误

自己写的代码会出错吗?

使用的是什么集成环境?
mysql 的版本是多少?

自己写的代码会出错吗?

使用的是什么集成环境?
mysql 的版本是多少?


mysql 5.6.22,我一般用的PDO没问题,mysqli基本的函数也没问题,但是用mysqli_init()就报错了,同帖子上贴的那个warning一样。。。 这个函数我还真不知道干啥的貌似没用呀,但是phpMyAdmin里面好像用到了这个函数,我估计就是mysql_init()这里出问题了

自己写的代码会出错吗?

使用的是什么集成环境?
mysql 的版本是多少?


没有用集成的,我自己装的,apache2.4 mysql 5.6 和php5.6.4

不知楼主的问题现在是否解决。我最近几天也发现了这个问题,今天排查了一下,发现是之前安装的xdebug插件导致的,把php.ini中xdebug的配置项中的trace和profiler去掉之后,重启服务器就恢复正常了。
楼主可以参考下。

不知楼主的问题现在是否解决。我最近几天也发现了这个问题,今天排查了一下,发现是之前安装的xdebug插件导致的,把php.ini中xdebug的配置项中的trace和profiler去掉之后,重启服务器就恢复正常了。
楼主可以参考下。


果然如此!!!!
太感谢了!!

xdebug.auto_trace = On 和 xdebug.profiler_enable = On注释掉就OK了,不知道这两个配置项是干嘛的

人气教程排行