PHP mysqli_dump_debug_info() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

PHP mysqli_dump_debug_info() Function

❮ 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