Home  >  Article  >  Topics  >  What is the command to close the database in php

What is the command to close the database in php

青灯夜游
青灯夜游Original
2021-02-25 14:50:403031browse

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);".

What is the command to close the database in php

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:

<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");

// ....一些 PHP 代码...

mysqli_close($con);
?>

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn