mysql_close
(PHP 4, PHP 5)
mysql_close — MySQL 接続を閉じる
この拡張モジュールは PHP 5.5.0 で非推奨になり、PHP 7.0.0 で削除されました。 MySQLi あるいは PDO_MySQL を使うべきです。詳細な情報は MySQL: API の選択 を参照ください。 この関数の代替として、これらが使えます。
- mysqli_close()
- PDO: PDO オブジェクトへの
null
の代入
説明
mysql_close() は、指定した link_identifier が指す
MySQL データベースへの非持続的リンクを閉じます。
link_identifier
が指定されない場合、最後に
オープンされたリンクが使用されます。
持続的でない MySQL 接続や結果セットは、PHP スクリプトの実行が終了する時点で自動的に破棄されます。 そのため、オープンした接続をクローズしたり結果セットを開放したりすることは必須ではありませんが、 そうしておくことを推奨します。 その時点ですぐに PHP や MySQL にリソースを返せ、パフォーマンスの向上につながるからです。 関連する除法は リソースの開放を参照ください。
パラメータ
link_identifier
MySQL 接続。指定されない場合、mysql_connect() により直近にオープンされたリンクが指定されたと仮定されます。接続が見つからない、または、確立できない場合、
E_WARNING
レベルのエラーが生成されます。
例
例1 mysql_close() の例
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('接続できませんでした: ' . mysql_error());
}
echo '接続に成功しました';
mysql_close($link);
?>
上の例の出力は以下となります。
接続に成功しました
注意
注意:
mysql_close() は、mysql_pconnect() により生成された持続的リンクを閉じません。 詳細な情報は、マニュアルの 持続的データベース接続を参照ください。
User Contributed Notes 2 notes
A little note about multiple simultaneous connections to different hosts...
I work on a site that pulls content primarily from one db but uses a db on a foreign server to verify licensing. One might expect the following to work:
<?php
// Open the connection to the primary db
$res1 = mysql_connect($host1, $user1, $pass1);
mysql_select_db($db1);
// Open connection to the license server
$res2 = mysql_connect($host2, $user2, $pass2);
mysql_select_db($db2, $res2);
// Pull license data and close when done
mysql_query($check_sql, $res2);
// ...
mysql_close($res2);
// Now pull content from the primary db
// Not specifying the resource should default to the last open db
mysql_query($query);
// ...
?>
Turns out this last query, since it cant find an active connection, will try to connect with mysql_connect() with no paramaters. But if instead you do it as mysql_query($query, $res1), or alternatively, run the mysql_connect for this host again then it works fine. Thus, it doesnt seem to be possible to have code with an overarching "global" db connection interspersed with temporary connections to another host/db....
i just came over a problem that i had with apache.
It crashs and said :
"Parent: child process exited with status 3221225477 -- Restarting."
the error came from the extesion php_mysql.dll
i didn't understand what was the reason of that crash..
Then, i debug the script that i had downloaded and i noticed that that was the function mysql_close() which caused the problem.
The solution is, to send to it the link identifier which is optionnal in the description but cause a crash with no commentary.
Thanks to agneady.