class MySQLDB { public $link;// 用于保存链接资源 /** * 构造方法 */ public function __construct() { $this->link = mysql_connect("localhost:3306",'root','zhouyang'); } /** * 析构方法 */ public function __destruct() { // 释放链接资源 mysql_close($this->link); } }
class MySQLDB { public $link;// 用于保存链接资源 /** * 构造方法 */ public function __construct() { $this->link = mysql_connect("localhost:3306",'root','zhouyang'); } /** * 析构方法 */ public function __destruct() { // 释放链接资源 mysql_close($this->link); } }