使用mysqli_init()时,不允许进行属性访问。试图在php中跳过安全身份验证

时间:2015-04-01 22:23:11

标签: php authentication mysqli my.cnf

我试图在php中跳过安全身份验证。

$con= mysqli_init();
mysqli_options( $con, "READ_MYSQLI_DEFAULT_FILE", "/etc/my.cnf" );
mysqli_real_connect( $con, "localhost", ....password,etc... )

当我在phpstorm中调试时,在第一行,mysqli_init失败并且说不允许属性访问..

1 个答案:

答案 0 :(得分:5)

在SO上找到这个答案:mysqli + xdebug breakpoint after closing statment result in many warnings

它看起来像是mysqli驱动程序中的一个错误,但代码或连接没有任何问题。