mysqli->ping --
Pings a server connection, or tries to reconnect if the connection has gone down
Syntax
Procedural style:
bool mysqli_ping ( mysqli link )
Object oriented style (method):
class mysqli { bool ping ( void ) }
Checks whether the connection to the server is working. If it has gone
down, and global option mysqli.reconnect is enabled
an automatic reconnection is attempted.
This function can be used by clients that remain idle for a long while,
to check whether the server has closed the connection and reconnect if
necessary.
Return Values
Returns TRUE on success or FALSE on failure.
Examples
Example 1. Object oriented style
<?php $mysqli = new mysqli("localhost", "my_user", "my_password", "world");
/* check if server is alive */ if (mysqli_ping($link)) { printf ("Our connection is ok!\n"); } else { printf ("Error: %s\n", mysqli_error($link)); }
/* close connection */ mysqli_close($link); ?>
The above example will output:
Our connection is ok!
Php mysqli ping Function syntax tag
mysqli ping php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php mysqli ping syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.