PHP Function Reference

PHP mysqli dump_debug_info() Method



The PHP mysqli::dump_debug_info() / mysqli_dump_debug_info() function is designed to be executed by a user with the SUPER privilege and is used to dump debugging information into the log for the MySQL Server relating to the connection.

Syntax

//Object-oriented style
public mysqli::dump_debug_info()

//Procedural style
mysqli_dump_debug_info(mysql)

Parameters

mysql Required. For procedural style only: Specify a mysqli object returned by mysqli_connect() or mysqli_init().

Return Value

Returns true on success or false on failure.


❮ PHP MySQLi Reference