数据库类

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

 

posted on 2018-12-08 10:28  薇薇123456  阅读(71)  评论(0编辑  收藏  举报

导航