PHP PDO_MYSQL 链式操作 非链式操作类

Wesley13
• 阅读 565
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4: */
// +----------------------------------------------------------------------+
// | PHP version 5                                                        |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2004 The PHP Group                                |
// +----------------------------------------------------------------------+
// | This source file is subject to version 3.0 of the PHP license,       |
// | that is bundled with this package in the file LICENSE, and is        |
// | available through the world-wide-web at the following url:           |
// | http://www.php.net/license/3_0.txt.                                  |
// | If you did not receive a copy of the PHP license and are unable to   |
// | obtain it through the world-wide-web, please send a note to          |
// | license@php.net so we can mail you a copy immediately.               |
// +----------------------------------------------------------------------+
// | Authors: Original Author <author@example.com>                        |
// |          Your Name <you@example.com>                                 |
// +----------------------------------------------------------------------+
//
// $Id:$

class pdomysql {
    public  $dbtype = 'mysql';
    public  $dbhost = '127.0.0.1';
    public  $dbport = '3306';
    public  $dbname = 'test';
    public  $dbuser = 'root';
    public  $dbpass = '';
    public  $charset = 'utf-8';
    public  $stmt = null;
    public  $DB = null;
    public  $connect = true; // 是否長连接
    public  $debug = true;
    private  $parms = array();
    private $sql = array(
        "db" => "",
        "from" => "",
        "where" => "",
        "order" => "",
        "limit" => ""
    );
    /**
     * 构造函数
     */
    public function __construct() {
       
        $this->connect();
        $this->DB->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, true);
        $this->DB->setAttribute(PDO::ATTR_EMULATE_PREPARES, true);
        $this->execute('SET NAMES ' . $this->charset);
    }
    /**
     * 析构函数
     */
    public function __destruct() {
        $this->close();
    }
    /**
     * *******************基本方法开始********************
     */
    /**
     * 作用:连結数据库
     */
    public function connect() {
        try {
            $this->DB = new PDO($this->dbtype . ':host=' . $this->dbhost . ';port=' . $this->dbport . ';dbname=' . $this->dbname, $this->dbuser, $this->dbpass, array(
                PDO::ATTR_PERSISTENT => $this->connect
            ));
        }
        catch(PDOException $e) {
            die("Connect Error Infomation:" . $e->getMessage());
        }
    }
    /**
     * 关闭数据连接
     */
    public function close() {
        $this->DB = null;
    }
    /**
     * 對字串進行转義
     */
    public function quote($str) {
        return $this->DB->quote($str);
    }
    /**
     * 作用:获取数据表里的欄位
     * 返回:表字段结构
     * 类型:数组
     */
    public function getFields($table) {
        $this->stmt = $this->DB->query("DESCRIBE $table");
        $result = $this->stmt->fetchAll(PDO::FETCH_ASSOC);
        $this->stmt = null;
        return $result;
    }
    /**
     * 作用:获得最后INSERT的主鍵ID
     * 返回:最后INSERT的主鍵ID
     * 类型:数字
     */
    public function getLastId() {
        return $this->DB->lastInsertId();
    }
    /**
     * 作用:執行INSERT\UPDATE\DELETE
     * 返回:执行語句影响行数
     * 类型:数字
     */
    public function execute($sql) {
        $this->getPDOError($sql);
        return $this->DB->exec($sql);
    }
    /**
     * 获取要操作的数据
     * 返回:合併后的SQL語句
     * 类型:字串
     */
    private function getCode($table, $args) {
        $code = '';
        if (is_array($args)) {
            foreach ($args as $k => $v) {
                if ($v == '') {
                    continue;
                }
                $code.= "`$k`='$v',";
            }
        }
        $code = substr($code, 0, -1);
        return $code;
    }
    public function optimizeTable($table) {
        $sql = "OPTIMIZE TABLE $table";
        $this->execute($sql);
    }
    /**
     * 执行具体SQL操作
     * 返回:运行結果
     * 类型:数组
     */
    private function _fetch($sql, $type) {
        $result = array();
        $this->stmt = $this->DB->query($sql);
        $this->getPDOError($sql);
        $this->stmt->setFetchMode(PDO::FETCH_ASSOC);
        switch ($type) {
            case '0':
                $result = $this->stmt->fetch();
                break;

            case '1':
                $result = $this->stmt->fetchAll();
                break;

            case '2':
                $result = $this->stmt->rowCount();
                break;
        }
        $this->stmt = null;
        return $result;
    }
    /**
     * *******************基本方法結束********************
     */
    /**
     * *******************Sql操作方法开始********************
     */
    /**
     * 作用:插入数据
     * 返回:表內記录
     * 类型:数组
     * 參数:$db->insert('$table',array('title'=>'Zxsv'))
     */
    public function add($table, $args) {
        $sql = "INSERT INTO `$table` SET ";
        $code = $this->getCode($table, $args);
        $sql.= $code;
        return $this->execute($sql);
    }
    /**
     * 修改数据
     * 返回:記录数
     * 类型:数字
     * 參数:$db->up($table,array('title'=>'Zxsv'),array('id'=>'1'),$where
     * ='id=3');
     */
    public function up($table, $args, $where) {
        $code = $this->getCode($table, $args);
        $sql = "UPDATE `$table` SET ";
        $sql.= $code;
        $sql.= " Where $where";
        return $this->execute($sql);
    }
    /**
     * 作用:刪除数据
     * 返回:表內記录
     * 类型:数组
     * 參数:$db->del($table,$condition = null,$where ='id=3')
     */
    public function del($table, $where) {
        $sql = "DELETE FROM `$table` Where $where";
        return $this->execute($sql);
    }
    /**
     * 作用:获取單行数据
     * 返回:表內第一条記录
     * 类型:数组
     * 參数:$db->fetOne($table,$condition = null,$field = '*',$where ='')
     */
    public function fetOne($table, $field = '*', $where = false) {
        $sql = "SELECT {$field} FROM `{$table}`";
        $sql.= ($where) ? " WHERE $where" : '';
        return $this->_fetch($sql, $type = '0');
    }
    /**
     * 作用:获取所有数据
     * 返回:表內記录
     * 类型:二維数组
     * 參数:$db->fetAll('$table',$condition = '',$field = '*',$orderby = '',$limit
     * = '',$where='')
     */
    public function fetAll($table, $field = '*', $orderby = false, $where = false) {
        $sql = "SELECT {$field} FROM `{$table}`";
        $sql.= ($where) ? " WHERE $where" : '';
        $sql.= ($orderby) ? " ORDER BY $orderby" : '';
        return $this->_fetch($sql, $type = '1');
    }
    /**
     * 作用:获取單行数据
     * 返回:表內第一条記录
     * 类型:数组
     * 參数:select * from table where id='1'
     */
    public function getOne($sql) {
        return $this->_fetch($sql, $type = '0');
    }
    /**
     * 作用:获取所有数据
     * 返回:表內記录
     * 类型:二維数组
     * 參数:select * from table
     */
    public function getAll($sql) {
        return $this->_fetch($sql, $type = '1');
    }
    /**
     * 作用:获取首行首列数据
     * 返回:首行首列欄位值
     * 类型:值
     * 參数:select `a` from table where id='1'
     */
    public function scalar($sql, $fieldname) {
        $row = $this->_fetch($sql, $type = '0');
        return $row[$fieldname];
    }
    /**
     * 获取記录总数
     * 返回:記录数
     * 类型:数字
     * 參数:$db->fetRow('$table',$condition = '',$where ='');
     */
    public function fetRowCount($table, $field = '*', $where = false) {
        $sql = "SELECT COUNT({$field}) AS num FROM $table";
        $sql.= ($where) ? " WHERE $where" : '';
        return $this->_fetch($sql, $type = '0');
    }
    /**
     * 获取記录总数
     * 返回:記录数
     * 类型:数字
     * 參数:select count(*) from table
     */
    public function getRowCount($sql) {
        return $this->_fetch($sql, $type = '2');
    }
    //链式操作开始
    public function from($tableName) {
        $this->sql["from"] = "FROM " . $tableName;
        return $this;
    }
    public function db($tableName) {
        $this->sql["db"] = $tableName;
        return $this;
    }
    public function where($_where = '1=1') {
        $this->sql["where"] = "WHERE " . $_where;
        return $this;
    }
    public function order($_order = 'id DESC') {
        $this->sql["order"] = "ORDER BY " . $_order;
        return $this;
    }
    public function limit($_limitstart="30",$_limitend = '0') {
        if ($_limitend=="0"){
            $this->sql["limit"] = "LIMIT 0," . $_limitstart;
        }else{
            $this->sql["limit"] = "LIMIT $_limitstart," . $_limitend;
        }
        
        return $this;
    }
    /**
     * 获取所有記录
     * 返回:所有記录
     * 类型:array
     * 參数: $pdomysql->from('dbname')->limit(30)->where('1=1')->select();
     */
    public function select($_select = '*') {
        //return "SELECT " . $_select . " " . (implode(" ", $this->sql));
        $sql="SELECT " . $_select . " " . (implode(" ", $this->sql));
        return $this->_fetch($sql, $type = '1');
    }
    /**
     * 获取一条記录
     * 返回:一条記录
     * 类型:array
     * 參数: $pdomysql->from('dbname')->limit(30)->where('1=1')->find();
     */
    public function find($_find = '*'){
        $this->sql['limit']='limit 1';
        $sql="SELECT " . $_find . " " . (implode(" ", $this->sql));
        return $this->_fetch($sql, $type = '0');
    }
    /**
     * 插入一条数据
     * 返回:执行结果
     * 类型:bool
     * 參数: $pdomysql->db('dbname')->insert(array('col1'="sadsd"));
     */
    public function insert($_insert=array()){
        $table=$this->sql['db'];
        $sql = "INSERT INTO `$table` SET ";
        $code = $this->getCode($table, $args);
        $sql.= $code;
        return $this->execute($sql);
    }
    /**
     * 删除
     * 返回:删除结果
     * 类型:bool
     * 參数: $pdomysql->from('dbname')->where('1=1')->delete();
     */
    public function delete(){
        $sql="DELETE  " . (implode(" ", $this->sql));
        return $this->execute($sql);
    }
    public function update(){
        
    }
    //链式操作end
    /**
     * *******************Sql操作方法結束********************
     */
    /**
     * *******************错误处理开始********************
     */
    /**
     * 設置是否为调试模式
     */
    public function setDebugMode($mode = true) {
        return ($mode == true) ? $this->debug = true : $this->debug = false;
    }
    /**
     * 捕获PDO错误信息
     * 返回:出错信息
     * 类型:字串
     */
    private function getPDOError($sql) {
        $this->debug ? $this->errorfile($sql) : '';
        if ($this->DB->errorCode() != '00000') {
            $info = ($this->stmt) ? $this->stmt->errorInfo() : $this->DB->errorInfo();
            echo ($this->sqlError('mySQL Query Error', $info[2], $sql));
            exit();
        }
    }
    private function getSTMTError($sql) {
        $this->debug ? $this->errorfile($sql) : '';
        if ($this->stmt->errorCode() != '00000') {
            $info = ($this->stmt) ? $this->stmt->errorInfo() : $this->DB->errorInfo();
            echo ($this->sqlError('mySQL Query Error', $info[2], $sql));
            exit();
        }
    }
    /**
     * 寫入错误日志
     */
    private function errorfile($sql) {
        echo $sql . '<br />';
        $errorfile = __DIR__ . '/dberrorlog.php';
        $sql = str_replace(array(
            "\n",
            "\r",
            "\t",
            "  ",
            "  ",
            "  "
        ) , array(
            " ",
            " ",
            " ",
            " ",
            " ",
            " "
        ) , $sql);
        if (!file_exists($errorfile)) {
            $fp = file_put_contents($errorfile, "<?PHP exit('Access Denied'); ?>\n" . $sql);
        } else {
            $fp = file_put_contents($errorfile, "\n" . $sql, FILE_APPEND);
        }
    }
    /**
     * 作用:运行错误信息
     * 返回:运行错误信息和SQL語句
     * 类型:字符
     */
    private function sqlError($message = '', $info = '', $sql = '') {
        $html = '';
        if ($message) {
            $html.= $message;
        }
        if ($info) {
            $html.= 'SQLID: ' . $info;
        }
        if ($sql) {
            $html.= 'ErrorSQL: ' . $sql;
        }
        throw new Exception($html);
    }
    /**
     * *******************错误处理結束********************
     */
}
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Stella981 Stella981
3年前
Python3:sqlalchemy对mysql数据库操作,非sql语句
Python3:sqlalchemy对mysql数据库操作,非sql语句python3authorlizmdatetime2018020110:00:00coding:utf8'''
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
3年前
PHP创建多级树型结构
<!lang:php<?php$areaarray(array('id'1,'pid'0,'name''中国'),array('id'5,'pid'0,'name''美国'),array('id'2,'pid'1,'name''吉林'),array('id'4,'pid'2,'n
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这