Home> Topics> php mysql> body text

What is the command to close the database in php

青灯夜游
Release: 2023-01-13 00:42:52
Original
2986 people have browsed it

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);
Copy after login
  • connection: required. Specifies the MySQL connection to be closed.

Return value: TRUE if successful, FALSE if failed.

[Recommended learning: "PHP Video Tutorial"]

Example:

Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!