mysqli_debug (PHP 5) mysqli_debug -- Performs debugging operations Descriptionbool mysqli_debug ( string debug )
The mysqli_debug() function is used to perform debugging
operations using the Fred Fish debugging library. The debug
parameter is a string representing the debugging operation to perform.
Note:
To use the mysqli_debug() function you must complile
the MySQL client library to support debugging.
Return Valuesmysqli_debug() doesn't return any value. Examples
Example 1. Generating a Trace File |
<?php
mysqli_debug("d:t:0,/tmp/client.trace");
?>
|
|
There are no user contributed notes for this page.
|