PHP實現的一個簡單的數據庫操作類
PHP實現的一個簡單的數據庫操作類
實現的功能:
- 在實例化的時候能設置連接字符集
- 在實例化的時候能連接數據庫
- 在實例化的時候能選擇默認數據庫
- 銷毀對象時關閉數據庫
代碼如下:
server = $server;
$this->username = $username;
$this->password = $password;
$this->default_db = $default_db;
// 連接數據庫
$this->link = mysql_connect($this->server,$this->username,$this->password);
if (!$this->link) {
echo 'database connect failure!';
}
// 設置默認的數據庫
$bool = mysql_select_db($this->default_db,$this->link);
if (!$bool) {
echo 'Select default_db failure!';
}
}
// 聲明析構函數
public function __destruct() {
mysql_close($this->link);
}
}