1
我測試了下面的PDO代碼,我可以通過show processlist
查看MySQL中與MySQL的連接,但我怎樣才能切斷一個連接?除了命令行之外,還有其他管理MySQL連接/等的強大工具嗎?如何管理MySQL內的MySQL連接?
<?php
$dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass, array(PDO::ATTR_PERSISTENT => true));
// use the connection here
// and now we're done; close it
$dbh = null;
?>