php The command to close the database is "mysqli_close()". In PHP, after the database operation is completed, you can use the mysql_close() function to close the database connection. The syntax format is "mysqli_close (MySQL connection to be closed);".
The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer
php closes the database
When the database operation is completed, you can use mysql_close to close the database connection. By default, when PHP is executed, the database connection will be automatically closed.
mysqli_close() function can close a previously opened database connection.
Syntax
mysqli_close(connection);
connection: required. Specifies the MySQL connection to be closed.
Return value: TRUE if successful, FALSE if failed.
[Recommended learning: "PHP Video Tutorial"]
Example:
For more programming-related knowledge, please visit:programming video! !
The above is the detailed content of What is the command to close the database in php. For more information, please follow other related articles on the PHP Chinese website!