mysqli::dump_debug_info
(mysqli_dump_debug_info) Dump debug information into the log
The dump_debug_info()
/ mysqli_dump_debug_info()
function is used to dump debug information into the log.
Dump debug information into the log:
<?php $mysqli = new mysqli ( "localhost" , "my_user" , "my_password" , "my_db" ) ; $mysqli -> dump_debug_info ( ) ; ?>
Dump debug information into the log:
<?php $con = mysqli_connect ( "localhost" , "my_user" , "my_password" , "my_db" ) ; mysqli_dump_debug_info ( $con ) ; ?>