主頁(yè) > 知識(shí)庫(kù) > PHP封裝的數(shù)據(jù)庫(kù)模型Model類完整示例【基于PDO】

PHP封裝的數(shù)據(jù)庫(kù)模型Model類完整示例【基于PDO】

熱門標(biāo)簽:臨沂智能電銷機(jī)器人軟件 上海公司外呼系統(tǒng)線路 芒果電銷機(jī)器人 十堰ai電話機(jī)器人效果怎么樣 銀川ai電話機(jī)器人 電梯外呼線路板維修視頻 地圖標(biāo)注風(fēng)向標(biāo) 安陽(yáng)自動(dòng)外呼系統(tǒng)價(jià)格是多少 浙江外呼電話系統(tǒng)軟件

本文實(shí)例講述了PHP封裝的數(shù)據(jù)庫(kù)模型Model類。分享給大家供大家參考,具體如下:

?php
    //引入配置文件
    include "../Config/config.php";
    class Model extends PDO
    {
        protected $tableName = "";//存儲(chǔ)表名
        protected $sql = "";//存儲(chǔ)最后執(zhí)行的SQL語(yǔ)句
        protected $limit = "";//存儲(chǔ)limit條件
        protected $order = "";//存儲(chǔ)order排序條件
        protected $field = "*";//存儲(chǔ)要查詢的字段
        protected $where = "";//存儲(chǔ)where條件
        protected $allFields = [];//存儲(chǔ)當(dāng)前表的所有字段
        /**
         * 構(gòu)造方法 初始化
         * @param string $tableName 要操作的表名
         */
        public function __construct($tableName)
        {
            //連接數(shù)據(jù)庫(kù)
            parent::__construct('mysql:host='.HOST.';dbname='.DB.';charset=utf8;port='.PORT,USER,PWD);
            //存儲(chǔ)表名
            $this->tableName = PRE.$tableName;
            //獲取當(dāng)前數(shù)據(jù)表中有哪些字段
            $this->getFields();
        }
        /**
         * 獲取當(dāng)前表的所有字段
     * @return array 成功則返回一維數(shù)組字段
         */
        public function getFields()
        {
            //查看當(dāng)前表結(jié)構(gòu)
            $sql = "desc {$this->tableName}";
            $res = $this->query($sql);//返回pdo對(duì)象
          //var_dump($res);
            if ($res) {
                $arr = $res->fetchAll(2);
                //var_dump($arr);
                //從二維數(shù)組中取出指定下標(biāo)的列
                $this->allFields =    array_column($arr,"Field");
                return $this->allFields;
            } else {
                die("表名錯(cuò)誤");
            }
        }
        /**
         * 添加操作
         * @param array $data 要添加的數(shù)組
         * @return int 返回受影響行數(shù)
         */
        public function add($data)
        {
            //判斷是否是數(shù)組
            if (!is_array($data)) {
                    return $this;
            }
            //判斷是否全是非法字段
            if (empty($data)) {
                    die("非法字段");
            }
            //過濾非法字段
            foreach($data as $k => $v){
                if (!in_array($k,$this->allFields)) {
                    unset($data[$k]);
                }
            }
            //將數(shù)組中的鍵取出
            $keys = array_keys($data);
            //將數(shù)組中取出的鍵轉(zhuǎn)為字符串拼接
            $key = implode(",",$keys);
            //將數(shù)組中的值轉(zhuǎn)化為字符串拼接
            $value = implode("','",$data);
            //準(zhǔn)備SQL語(yǔ)句
            $sql = "insert into {$this->tableName} ({$key}) values('{$value}')";
            $this->sql = $sql;
            //執(zhí)行并發(fā)送SQL,返回受影響行數(shù)
            return (int)$this->exec($sql);
        }
        /**
         * 刪除操作
         * @param string $id 要?jiǎng)h除的id
         * @return int 返回受影響行數(shù)
         */
        public function delete($id="")
        {
            //判斷id是否存在
            if (empty($id)) {
                $where = $this->where;
            }else{
                $where = "where id={$id}";
            }
            $sql = "delete from {$this->tableName} {$where}";
      $this->sql = $sql;
            //執(zhí)行并發(fā)送SQL,返回受影響行數(shù)
            return (int)$this->exec($sql);
        }
    /**
     * 修改操作
     * @param array $data 要修改的數(shù)組
     * @return int 返回受影響行數(shù)
     */
    public function update($data)
    {
      //判斷是否是數(shù)組
      if (!is_array($data)){
        return $this;
      }
      //判斷是否全是非法字段
      if (empty($data)) {
        die('全是非法字段');
      }
      $str = "";
      //過濾非法字段
      foreach ($data as $k=>$v) {
        //字段為id時(shí),判斷id是否存在的
        if ($k == "id"){
          $this->where = "where id={$v}";
          unset($data[$k]);
          continue;
        }
        //若字段不為id,則過濾后再拼接成set字段
        if (in_array($k, $this->allFields)) {
          $str .= "{$k}='{$v}',";
        } else {
          unset($data[$k]);
        }
      }
      //判斷是否傳了條件
      if (empty($this->where)) {
        die('請(qǐng)傳入修改條件');
      }
      //去除右邊的,
      $str = rtrim($str, ',');
      $sql = "update {$this->tableName} set {$str} {$this->where}";
      //echo $sql;
      $this->sql = $sql;
      return (int)$this->exec($sql);
    }
    /**
     * 查詢多條數(shù)據(jù)
     * @return array 成功返回二維數(shù)組,失敗返回空數(shù)組
     */
        public function select()
    {
          $sql = "select {$this->field} from {$this->tableName} {$this->where} {$this->order} {$this->limit}";
      $this->sql = $sql;
      //執(zhí)行SQL,結(jié)果集是一個(gè)對(duì)象
          $res = $this->query($sql);
          //判斷是否查詢成功,
      if ($res){
        //成功返回二維數(shù)組
        return $res->fetchAll(2);
      }
      //失敗返回空數(shù)組
      return [];
    }
    /**
     * 查詢一條數(shù)組
     * @param string $id 要查詢的id
     * @return array 返回一條數(shù)據(jù)
     */
    public function find($id="")
    {
      //判斷是否存在id
      if (empty($id)){
        $where = $this->where;
      }else{
        $where = "where id={$id}";
      }
          $sql = "select {$this->field} from {$this->tableName} {$where} {$this->order} limit 1";
      $this->sql = $sql;
      //執(zhí)行sql,結(jié)果集為對(duì)象
      $res = $this->query($sql);
      //判斷是否查詢成功
      if ($res){
        //成功則返回一條數(shù)據(jù)(一維數(shù)組)
        $result = $res->fetchAll(2);
        return $result[0];
      }
      //失敗返回空數(shù)組
      return [];
    }
    /**
     * 統(tǒng)計(jì)總數(shù)目
     * @return int 返回總數(shù)
     */
    public function count()
    {
      $sql = "select count(*) as total from {$this->tableName} {$this->where} limit 1";
      $this->sql = $sql;
      //執(zhí)行SQL,結(jié)果集為對(duì)象
      $res = $this->query($sql);
      //處理結(jié)果集
      if ($res){
       $result = $res->fetchAll(2);
       //var_dump($result);
        return $result[0]["total"];
      }
      return 0;
    }
    /**
     * 設(shè)置要查詢的字段信息
     * @param string $field 要查詢的字段
     * @return object 返回自己,保證連貫操作
     */
    public function field($field)
    {
      //判斷字段是否存在
      if (empty($filed)){
        return $this;
      }
      $this->field = $field;
      return $this;
    }
    /**
     * 獲取最后執(zhí)行的sql語(yǔ)句
     * @return string sql語(yǔ)句
     */
    public function _sql()
    {
      return $this->sql;
    }
    /**
     * where條件
     * @param string $where 要輸入的where條件
     * @return object 返回自己,保證連貫操作
     */
    public function where($where)
    {
      $this->where = "where ".$where;
      return $this;
    }
    /**
     * order條件
     * @param string $order 要輸入的order條件
     * @return object 返回自己,保證連貫操作
     */
    public function order($order)
    {
      $this->order = "order by ".$order;
      return $this;
    }
    /**
     * limit條件
     * @param string $limit 要輸入的limit條件
     * @return object 返回自己,保證連貫操作
     */
    public function limit($limit)
    {
      $this->limit = "limit ".$limit;
      return $this;
    }
}

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP基于pdo操作數(shù)據(jù)庫(kù)技巧總結(jié)》、《php+mysqli數(shù)據(jù)庫(kù)程序設(shè)計(jì)技巧總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫(kù)操作入門教程》及《php常見數(shù)據(jù)庫(kù)操作技巧匯總》

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • php封裝db類連接sqlite3數(shù)據(jù)庫(kù)的方法實(shí)例
  • php db類庫(kù)進(jìn)行數(shù)據(jù)庫(kù)操作
  • PHP基于MySQLI函數(shù)封裝的數(shù)據(jù)庫(kù)連接工具類【定義與用法】
  • PHP數(shù)據(jù)庫(kù)表操作的封裝類及用法實(shí)例詳解
  • PHP封裝的PDO數(shù)據(jù)庫(kù)操作類實(shí)例
  • PHP數(shù)據(jù)庫(kù)處理封裝類實(shí)例
  • php簡(jiǎn)單數(shù)據(jù)庫(kù)操作類的封裝
  • PHP封裝mysqli基于面向?qū)ο蟮膍ysql數(shù)據(jù)庫(kù)操作類與用法示例
  • PHP封裝的mysqli數(shù)據(jù)庫(kù)操作類示例
  • PHP模型Model類封裝數(shù)據(jù)庫(kù)操作示例
  • PHP封裝類似thinkphp連貫操作數(shù)據(jù)庫(kù)Db類與簡(jiǎn)單應(yīng)用示例

標(biāo)簽:遂寧 武威 吐魯番 荊門 徐州 常州 寧夏 遵義

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP封裝的數(shù)據(jù)庫(kù)模型Model類完整示例【基于PDO】》,本文關(guān)鍵詞  PHP,封,裝的,數(shù)據(jù)庫(kù),模型,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP封裝的數(shù)據(jù)庫(kù)模型Model類完整示例【基于PDO】》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于PHP封裝的數(shù)據(jù)庫(kù)模型Model類完整示例【基于PDO】的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章