我试图在php中跳过安全身份验证。
$con= mysqli_init();
mysqli_options( $con, "READ_MYSQLI_DEFAULT_FILE", "/etc/my.cnf" );
mysqli_real_connect( $con, "localhost", ....password,etc... )
当我在phpstorm中调试时,在第一行,mysqli_init失败并且说不允许属性访问..
答案 0 :(得分:5)
在SO上找到这个答案:mysqli + xdebug breakpoint after closing statment result in many warnings
它看起来像是mysqli驱动程序中的一个错误,但代码或连接没有任何问题。