简介:
defined('ACC')||exit('Access Denied');
// 封装mysql操作类,包括连接功能,及查询功能.
class mysql extends absdb{
protected static $ins = null;
protected $host; // 主机名
protected $user; // 用户名
protected $passwd; // 密码
protected $db; // 数据库名
protected $port; // 端口
protected $conn = null;
// 在内部操作,获得一个对象
public static function getIns() {
if(self::$ins === null) {
self::$ins = new self();
}
$conf = conf::getIns();
self::$ins->host = $conf->host;
self::$ins->user = $conf->user;
self::$ins->passwd = $conf->pwd;
self::$ins->db = $conf->db;
self::$ins->port = $conf->port;
self::$ins->connect();
self::$ins->select_db();
self::$ins->setChar();
return self::$ins;
}
// 不让外部做new操作,
protected function __construct() {
}
// 连接数据库
public function connect() {
$this->conn = @mysql_connect($this->host,$this->user,$this->passwd,$this->port);
if(!$this->conn) {
$error = new Exception('数据库连不上',9);
throw $error;
}
}
// 发送sql查询
public function query($sql) {
$rs = mysql_query($sql,$this->conn);
if(!$rs) {
log::write($sql);
}
return $rs;
}
这是一个单例模式实现mysql的PHP类,需要的朋友可以下载使用。