PHP mysqli stat() Function
Example - Object Oriented style
Return the current system status:
<?php
$mysqli = new mysqli("localhost","my_user","my_password","my_db");
if ($mysqli -> connect_errno) {
echo "Failed to connect to MySQL: " . $mysqli -> connect_error;
exit();
}
echo "System status: ". $mysqli -> stat();
$mysqli -> close();
?>
Look at example of procedural style at the bottom.
Definition and Usage
The stat() / mysqli_stat() function returns the current system status.
Syntax
Object oriented style:
$mysqli ->
stat()
Procedural style:
mysqli_stat(connection)
Parameter Values
Parameter | Description |
---|---|
connection | Required. Specifies the MySQL connection to use |
Technical Details
Return Value: | A string that describes the server status. FALSE on error |
---|---|
PHP Version: | 5+ |
Example - Procedural style
Return the current system status:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();
exit;
}
echo "System status: ". mysqli_stat($con);
mysqli_close($con);
?>
❮ PHP MySQLi Reference