Warning: mysql_close(): 7 is not a valid MySQL-Link resource in,該如何處理

來源:互聯網
上載者:User
Warning: mysql_close(): 7 is not a valid MySQL-Link resource in
我在一個介面裡面進行了兩次mysql資料庫操作.
1.介面布局分成左右兩塊,進入介面的時候顯示左側內容,進行一次資料庫操作。
2.點擊左側的submit,右側內容顯示,有進行一次資料庫操作。
我有一個資料庫類,在左邊new一次,在右側new一次。
進入頁面就會出現Warning: mysql_close(): 7 is not a valid MySQL-Link resource in E:\www\bk_hmsystem\backstage\db.php on line 22
如果我刪除左側的資料庫操作就不會出現這個問題。
mysql_close放在資料庫操作類的解構函式中,如下:
class db
{
private $host;
private $user;
private $pw;
private $con;
private $dbname;

function __construct($host,$user,$pw,$dbname)
{
$this->host=$host;
$this->user=$user;
$this->pw=$pw;
$this->dbname=$dbname;
$this->connect();
}
function connect()
{
$this->con=mysql_connect($this->host,$this->user,$this->pw);
if(!$this->con) die(mysql_error());
mysql_select_db($this->dbname,$this->con) or die(mysql_error());
}
function __destruct()
{
mysql_close($this->con);
}
function query($name,$table,$cond)
{
if(($name=="")&&($cond==""))
$sql="select * from $table";
else
{
if($name=="")
$sql="select * from $table where $cond";
else
{
if($cond=="")
$sql="select $name from $table";
else
$sql="select $name from $table where $cond";
}
}
$result=mysql_query($sql,$this->con);
if(!$result)
{
die (mysql_error());
}
else
return $result;
}
}
紅色的地方有錯.不明白為什嗎?

------解決方案--------------------
顯然調用了兩次。第一次已經關閉串連。第二次就會出錯。你乾脆就省去那一步把。指令碼結束後自然會中斷連線的。
------解決方案--------------------
你的頁面是兩個架構頁構成的嗎?

加些程式碼分析一下
function __destruct()
{
if(is_resource($this->con))
mysql_close($this->con);
else {
echo $_SERVER['PHP_SELF'];
var_dump($this->con);
}
}
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.