php-mysqlHow to set a timeout for MySQL query in PHP?
The mysqli_query() function in PHP can be used to set a timeout for a MySQL query. The timeout parameter of the function can be used to set the timeout value in seconds.
$mysqli = new mysqli("localhost", "user", "password", "database");
$query = "SELECT * FROM table";
$result = $mysqli->query($query, MYSQLI_STORE_RESULT, MYSQLI_OPT_CONNECT_TIMEOUT, 10);
The output of the above code will be a mysqli_result object if the query is successful, or FALSE if the query times out.
Code explanation
$mysqli = new mysqli("localhost", "user", "password", "database");: This line creates a newmysqliobject with the given parameters.$query = "SELECT * FROM table";: This line sets the query to be executed.$result = $mysqli->query($query, MYSQLI_STORE_RESULT, MYSQLI_OPT_CONNECT_TIMEOUT, 10);: This line executes the query with a timeout of 10 seconds.
Helpful links
More of Php Mysql
- How to get the version of MySQL using PHP?
- How to use a MySQL union in PHP?
- How to export data from MySQL to Excel using PHP?
- How to connect to a MySQL database using PHP?
- What port to connect to MySQL from PHP?
- How to write an update query in MySQL using PHP?
- How to use MySQL transactions in PHP?
- How to use a variable in a MySQL query using PHP?
- How to use utf8mb4_unicode_ci in MySQL with PHP?
See more codes...