PHP - Function MySQLi Debug Info



Syntax

mysqli_dump_debug_info(link);

Definition and Usage

It is used dumps debugging info into the log

Return Values

It returns true on success or false on failure

Parameters

Sr.No Parameters & Description
1

link

It returned by mysqli_connect() or mysqli_init()

Example

Try out the following example

<?php
   {
      mysqli_dump_debug_info($con);
   }
?>
php_function_reference.htm
Advertisements