mysqli::close

mysqli_close

(PHP 5)

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

Beskrivelse

Object oriented style

bool mysqli::close ( void )

Procedural style

bool mysqli_close ( mysqli $link )

Closes a previously opened database connection.

Parametre

link

Procedural style only: A link identifier returned by mysqli_connect() or mysqli_init()

Returnerings Værdier

Returns TRUE on success or FALSE on failure.

Eksempler

See mysqli_connect().

Se også

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