(PHP 4, PHP 5)
mysql_close — Close MySQL connection
Questa enstensione deprecata da PHP 5.5.0, e sarà rimossa in futuro. Al suo posto, usare l'estensione MySQLi o PDO_MySQL. Vedere anche la guida MySQL: scelta dell'API e le FAQ relative per ulteriori informazioni. Le alternative a questa funzione includono:
null
to the PDO object
mysql_close() closes the non-persistent connection to
the MySQL server that's associated with the specified link identifier. If
link_identifier
isn't specified, the last opened
link is used.
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_identifier
La connessione MySQL. Se
l'identificatore di collegamento non è fornito, si utilizza l'ultimo collegamento aperto da
mysql_connect(). Se la connessione non viene trovata o se non può essere
creata, viene gererato un errore di livello E_WARNING
.
Example #1 mysql_close() example
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);
?>
Il precedente esempio visualizzerà:
Connected successfully
Nota:
mysql_close() will not close persistent links created by mysql_pconnect(). For additional details, see the manual page on persistent connections.