FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

PHP mysqli_dump_debug_info() Function

PHP MySQLi Reference PHP MySQLi Reference

Example

Dump debug info into the log:

<?php
mysqli_dump_debug_info($con);
?>

Definition and Usage

The mysqli_dump_debug_info() function dumps debugging info into the log.


Syntax

mysqli_dump_debug_info(link);

Parameter Description
link Required. A link identifier returned by mysqli_connect() or mysqli_init()

Technical Details

Return Value: TRUE on success. FALSE on failure
PHP Version: 5+

PHP MySQLi Reference PHP MySQLi Reference