php实现mysql封装类示例
PHP MySQL封装类的优雅实现
在PHP中,封装MySQL操作为一个类可以大大提高代码的可读性和可维护性。以下是一个简单的MySQL封装类的示例,供您参考。
一、类定义
====
```php
class MySQLWrapper {
private $host;
private $user;
private $password;
private $dbname;
private $charset;
private $conn;
public function __construct($host = 'localhost', $user = 'root', $password = 'root', $dbname = 'test', $charset = 'utf8') {
$this->host = $host;
$this->user = $user;
$this->password = $password;
$this->dbName = $dbname;
$this->charset = $charset;
$this->connect();
$this->selectDb();
$this->setCharset();
}
private function connect() {
$this->conn = mysql_connect($this->host, $this->user, $this->password);
if (!$this->conn) {
die('数据库连接失败');
}
}
public function selectDb() {
$this->query("USE {$this->dbName}");
}
public function setCharset() {
$this->query("SET NAMES {$this->charset}");
}
private function query($sql) {
return mysql_query($sql, $this->conn);
}
编程语言
- php实现mysql封装类示例
- 巧妙利用PARTITION分组排名递增特性解决合并连续
- 基于jQuery 实现bootstrapValidator下的全局验证
- PHP simplexml_load_file()函数讲解
- 在thinkphp5.0路径中实现去除index.php的方式
- 关于file_get_contents返回为空或函数不可用的解决方
- JavaScript静态作用域和动态作用域实例详解
- 如何判断出一个js对象是否一个dom对象
- 解析php入库和出库
- 实现div滚动条默认最底部以及默认最右边的示例
- 移动端网页开发调试神器Eruda的介绍与使用技巧
- asp Http_Referer,Server_Name和Http_Host
- 关于jQuery里prev()的简单操作代码
- JS操作xml对象转换为Json对象示例
- Codeigniter中禁止A Database Error Occurred错误提示的方
- PHP实现转盘抽奖算法分享