db_Mysql::close PHP Method

close() public method

关闭数据库
public close ( ) : void
return void
    public function close()
    {
        if ($this->_linkID) {
            mysql_close($this->_linkID);
        }
        $this->_linkID = null;
    }

Usage Example

Example #1
0
 function __destruct()
 {
     if ($this->db) {
         $this->db->close();
     }
 }
All Usage Examples Of db_Mysql::close