PHP MySQLi: debug() function
mysqli_debug() function / mysqli::debug
The mysqli_debug() function / mysqli::debug is used to perform debugging operations.
Note: In order to use this function, you must compile the MySQL client library to support debugging.
Syntax:
Object oriented style
bool mysqli::debug ( string $message )
Procedural style
bool mysqli_debug ( string $message )
Usage: Procedural style
mysqli_debug(message);
Parameter:
Name | Description | Required/Optional |
---|---|---|
massage | A string that represents the debugging operation to perform | Required |
Return value:
Returns TRUE.
Version: PHP 5, PHP 7
Example:
<?php
/* Create a trace file in '/tmp/client.trace' on the local (client) machine: */
mysqli_debug("d:t:o,/tmp/client.trace");
?>
See also
Previous: connect
Next: dump_debug_info
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/php/function-reference/mysqli_debug.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics