Latest web development tutorials

PHP mysqli_dump_debug_info () function

PHP MySQLi Reference Manual PHP MySQLi Reference Manual

Examples

Dump debugging information to the log:

<?php
mysqli_dump_debug_info($con);
?>

Definition and Usage

mysqli_dump_debug_info () function to dump debug information to the log.


grammar

mysqli_dump_debug_info( link);

参数 描述
link 必需。一个由 mysqli_connect()mysqli_init() 返回的连接标识符。

technical details

return value: If successful it returns TRUE, on failure returns FALSE.
PHP version: 5+


PHP MySQLi Reference Manual PHP MySQLi Reference Manual