• <kbd id="qyk40"></kbd>
  • <strike id="qyk40"></strike><samp id="qyk40"><pre id="qyk40"></pre></samp>
    /**
     * Description of pdo
     *
     * @author Administrator
     */
    class ZcPdo {
        public  $dbh        = "";   //全局連接Object;
        //public  $sth        = "";   //預處理參數
        private $dsn        = "";
        private $user       = "";
        private $password   = "";
        public  $returnAy   = array('errcode' => '','errmsg' => '');
        
        //構造函數 - 初始化連接
        public function __construct($dsn, $user, $password) {
            $this->dsn      = $dsn;
            $this->user     = $user;
            $this->password = $password;
            $this->pdoConnect();
        }
        
        private function pdoConnect(){
            try {
                $this->dbh = new PDO($this->dsn, $this->user, $this->password);
                return $this->dbh;
            }
            catch (PDOException $e) {
                echo 'Connection failed: ' . $e->getMessage();
                exit();
            }
        }
        
        //設置PDO參數
        public function zcAttribute($attribute, $value){
            $this->dbh->setAttribute($attribute, $value);
        }
        
        public function zcLastId($name = NULL){
            return $this->dbh->lastInsertId($name);
        }
        //數據庫單語句執行操作
        public function zcExec($param) {
            try {
                $rows = $this->dbh->exec($param);//影響行數
                return $this->zcLog(TRUE, $rows);
            }
            catch (PDOException $e) {
                return $this->zcLog(FALSE, $e->getMessage());
            }       
        }
        
        //格式化數據
        public function zcQuote($string){
            return $this->dbh->quote($string);
        }
        
        //批量處理格式化數據
        public function zcBatchQuote($data){
            $result = "";
            if(!empty($data) && (is_array($data) || is_object($data))){
                foreach($data as $key => $value){
                    if(!empty($value) && (is_array($value) || is_object($value))){
                        $result[$key] = $this->zcBatchQuote($value);
                    }
                    else{
                        $result[$key] = $this->zcQuote($value);
                    }
                }
            }
            else {
                $result = $this->zcQuote($data);
            }
            return $result;
        }
        
        //數據庫預處理操作 - 獲取全部數據
        public function zcFetchAll($statement ,$parameter = NULL ,$type = PDO::FETCH_ASSOC){
            try{
                $sth = $this->dbh->prepare($statement);
                //$sth->execute($parameter);
                $sth->execute($this->zcBatchQuote($parameter));
                $result = $sth->fetchAll($type);
                if(!empty($result) && is_array($result)){
                    return $this->zcLog(TRUE, $result);
                }
                else{
                    return $this->zcLog(TRUE, NULL);
                }
            }
            catch (PDOException $e) {
                return $this->zcLog(FALSE, $e->getMessage());
            }
        }
     
        //數據庫預處理操作 - 獲取一行數據
        public function zcFetchRow($statement ,$parameter = NULL ,$type = PDO::FETCH_ASSOC){
            try{
                $sth = $this->dbh->prepare($statement);
                $sth->execute($this->zcBatchQuote($parameter));
                $result = $sth->fetch($type);
                if(!empty($result) && is_array($result)){
                    return $this->zcLog(TRUE, $result);
                }
                else{
                    return $this->zcLog(TRUE, NULL);
                }
            }
            catch (PDOException $e) {
                return $this->zcLog(FALSE, $e->getMessage());
            }
        }
     
        //數據庫預處理操作 - 獲取一個數據
        public function zcFetchOne($statement ,$parameter = NULL){
            try{
                $sth = $this->dbh->prepare($statement);
                $sth->execute($this->zcBatchQuote($parameter));
                $result = $sth->fetch(PDO::FETCH_NUM);
                if(!empty($result) && is_array($result)){
                    return $this->zcLog(TRUE, $result[0]);
                }
                else{
                    return $this->zcLog(TRUE, NULL);
                }
            }
            catch (PDOException $e) {
                return $this->zcLog(FALSE, $e->getMessage());
            }
        }
        
        //開始事務
        public function zcBegin(){
            $this->dbh->beginTransaction();
        }
     
        //提交事務
        public function zcCommit(){
            $this->dbh->commit();
        }
        
        //回滾事務
        public function zcRollBack(){
            $this->dbh->rollBack();
        }
     
        //預處理事務執行語句
        public function zcPtmTstQuery($statement ,$parameter = NULL){
            try{
                $this->zcBegin();
                $result = $this->dbh->prepare($statement)->execute($parameter);
                $this->zcCommit();
                return $this->zcLog(TRUE, $result);
            }
            catch (PDOException $e) {
                $this->zcRollBack();
                return $this->zcLog(FALSE, $e->getMessage());
            }
        }
     
        //預處理執行語句
        public function zcPtmQuery($statement ,$parameter = NULL){
            try{
                $result = $this->dbh->prepare($statement)->execute($parameter);
                return $this->zcLog(TRUE, $result);
            }
            catch (PDOException $e) {
                return $this->zcLog(FALSE, $e->getMessage());
            }
        }
        
        //Query執行
        public function zcQuery($statement,$type = PDO::FETCH_ASSOC){
            try{
                $result = $this->dbh->query($statement,$type);
                return $this->zcLog(TRUE, $result);
            }
            catch (PDOException $e) {
                return $this->zcLog(FALSE, $e->getMessage());
            }
        }
        
        //日志LOG
        public function zcLog($errcode , $errmsg){
            $this->returnAy = array();
            $this->returnAy['errcode'] = $errcode;
            $this->returnAy['errmsg'] = $errmsg;
            $this->returnAy['errtime'] = date("Y-m-d H:i:s",time());
            return $this->returnAy;
        }
    }

     

    穩定

    產品高可用性高并發

    貼心

    項目群及時溝通

    專業

    產品經理1v1支持

    快速

    MVP模式小步快跑

    承諾

    我們選擇聲譽

    堅持

    10年專注高端品質開發
    • 返回頂部
    精品一区二区三区| 精品国产午夜理论片不卡| 久久精品国产影库免费看| 久久精品国产精品亚洲艾 | 国产精品亚洲专区无码牛牛| 中文字幕日韩丝袜一区| 国产精品香港三级国产AV| AV无码精品一区二区三区| 亚洲欧洲日韩在线电影| 久久精品国产精品亚洲艾| 亚洲AV成人精品日韩一区| 6一12呦女精品| 69SEX久久精品国产麻豆| 夜夜高潮夜夜爽国产伦精品| 久久久精品久久久久久96| 国产精品久久久久毛片真精品| 亚洲日韩亚洲另类激情文学| 中文精品人人永久免费| 国内揄拍国内精品| 精品性影院一区二区三区内射 | 国产精品国产三级国产an| 日韩AV无码一区二区三区不卡| 日韩欧精品无码视频无删节| 中文字幕国产日韩| 久久久亚洲精品无码| 高清在线亚洲精品国产二区| 精品日产一卡2卡三卡4卡自拍| 国产精品免费高清在线观看| 精品国精品自拍自在线| 九九99久久精品国产| 91在线亚洲精品专区| 中国国产成人精品久久| 亚洲AV成人精品日韩一区18p| 国产精品永久免费10000| 国产精品亚洲A∨天堂不卡| 亚洲日韩乱码中文无码蜜桃| 国产在视频线精品视频2021| 国产精品美女久久久m| 国产精品无码久久久久| 亚洲日韩乱码中文字幕| 精品国产一区二区三区久 |