mysqli::close

mysqli_close

(PHP 5, PHP 7)

mysqli::close -- mysqli_closeCloses a previously opened database connection

설명

객체 기반 형식

bool mysqli::close ( void )

절차식 형식

bool mysqli_close ( mysqli $link )

Closes a previously opened database connection.

Open non-persistent MySQL connections and result sets are automatically destroyed when a PHP script finishes its execution. So, while explicitly closing open connections and freeing result sets is optional, doing so is recommended. This will immediately return resources to PHP and MySQL, which can improve performance. For related information, see freeing resources

인수

link

순차 형식 전용: mysqli_connect()mysqli_init()가 반환한 연결 식별자.

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

예제

See mysqli_connect().

주의

Note:

mysqli_close() will not close persistent connections. For additional details, see the manual page on persistent connections.

참고

add a note add a note

User Contributed Notes 1 note

up
-38
php at dafydd dot com
15 years ago
I've had situations where database connections appeared to persist following php execution. So, now, my __destructor function explicitly contains a $cxn->close(). It hurts nothing, and helps avoid memory leaks.
To Top