属性 使用 mysqli_init() 时还不允许访问。试图跳过 php 中的安全身份验证
Property access not allowed yet when using mysqli_init(). Trying to skip secure auth in php
我正在尝试跳过 php 中的安全身份验证。
$con= mysqli_init();
mysqli_options( $con, "READ_MYSQLI_DEFAULT_FILE", "/etc/my.cnf" );
mysqli_real_connect( $con, "localhost", ....password,etc... )
当我在 phpstorm 中调试时,在第一行,mysqli_init 失败并显示 属性 访问尚未被允许..
在 SO 上找到这个答案后:mysqli + xdebug breakpoint after closing statment result in many warnings
它看起来像是 mysqli 驱动程序中的错误,但是代码或连接没有任何问题。
我正在尝试跳过 php 中的安全身份验证。
$con= mysqli_init();
mysqli_options( $con, "READ_MYSQLI_DEFAULT_FILE", "/etc/my.cnf" );
mysqli_real_connect( $con, "localhost", ....password,etc... )
当我在 phpstorm 中调试时,在第一行,mysqli_init 失败并显示 属性 访问尚未被允许..
在 SO 上找到这个答案后:mysqli + xdebug breakpoint after closing statment result in many warnings
它看起来像是 mysqli 驱动程序中的错误,但是代码或连接没有任何问题。