PHP实现的一个简单的数据库操作类
程序员文章站
2022-08-31 19:47:17
数据库操作类">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); } }