程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP基於單例模式實現的mysql類,phpmysql類

PHP基於單例模式實現的mysql類,phpmysql類

編輯:關於PHP編程

PHP基於單例模式實現的mysql類,phpmysql類


本文實例講述了PHP基於單例模式實現的mysql類。分享給大家供大家參考,具體如下:

<?php
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;
  }
  // 封裝一個getAll方法
  // 參數:$sql
  // 返回: array,false
  public function getAll($sql) {
    $rs = $this->query($sql);
    if(!$rs) {
      return false;
    }
    $list = array();
    while($row = mysql_fetch_assoc($rs)) {
      $list[] = $row;
    }
    return $list;
  }
  // 封裝一個getRow方法
  // 參數:$sql
  // 返回: array,false
  public function getRow($sql) {
    $rs = $this->query($sql);
    if(!$rs) {
      return false;
    }
    return mysql_fetch_assoc($rs);
  }
  // 封裝一個getOne方法,
  // 參數: $sql
  // 返回: int,str(單一的值)
  public function getOne($sql) {
    $rs = $this->query($sql);
    if(!$rs) {
      return false;
    }
    $tmp = mysql_fetch_row($rs);
    return $tmp[0];
  }
  // 封裝一個afftect_rows()方法
  // 參數:無
  // 返回 int 受影響行數
  public function affected_rows() {
    return mysql_affected_rows($this->conn);
  }
  // 返回最新生成的auto_increment列的值
  public function last_id() {
    return mysql_insert_id($this->conn);
  }
  // 選庫函數
  public function select_db() {
    $sql = 'use ' . $this->db;
    return $this->query($sql);
  }
  // 設置字符集的函數
  public function setChar() {
    $sql = 'set names utf8';
    return $this->query($sql);
  }
  // 自動生成insert語句,update語句並執行
  public function autoExecute($data,$table,$act='insert',$where='') {
    if($act == 'insert') {
      $sql = 'insert into ' . $table . ' (';
      $sql .= implode(',',(array_keys($data)));
      $sql .= ') values (\'';
      $sql .= implode("','",array_values($data));
      $sql .= "')";
    } else if($act == 'update') {
      if(!trim($where)) {
        return false;
      }
      $sql = 'update ' . $table . ' set ';
      foreach($data as $k=>$v) {
        $sql .= $k;
        $sql .= '=';
        $sql .= "'".$v."',";
      }
      $sql = substr($sql,0,-1);
      $sql .= ' where ';
      $sql .= $where;
    } else {
      return false;
    }
    //return $sql;
    return $this->query($sql);
  }
}

更多關於PHP數據庫操作相關內容感興趣的讀者可查看本站專題:《php+mysql數據庫操作入門教程》、《PHP基於pdo操作數據庫技巧總結》及《php常見數據庫操作技巧匯總》

希望本文所述對大家PHP程序設計有所幫助。

您可能感興趣的文章:

  • PHP單例模式詳細介紹
  • php設計模式之單例模式實例分析
  • php單態設計模式(單例模式)實例
  • php利用單例模式實現日志處理類庫
  • php設計模式之單例模式使用示例
  • php單例模式實現(對象只被創建一次)
  • php封裝的連接Mysql類及用法分析

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved