当前位置:   article > 正文

PHP - MySQL 数据库操作类_php mysql 操作公用类

php mysql 操作公用类

简单粗暴 ⛽️


// +----------------------------------------------------------------------
// | Author: 老掌
// +----------------------------------------------------------------------
// | 数据库操作类
// +----------------------------------------------------------------------

    /**
     * 数据库操作类
     * 数据库操作封装
     * @author wangweichen
     */


    /*
        connect($dbhost, $dbuser, $dbpw, $dbname = '', $charset)
        select_database('user')
        set_mysql_charset('utf8')
        fetch_array($res)
        query($sql)
        affected_rows()
        error()
        errno()
        result($res,0)
        num_rows($res)
        num_fields($res)
        free_result($res)
        insert_id()
        fetchRow($res)
        fetch_fields($res)
        version()
        ping()
        escape_string()
        close()
        error_msg('提示信息')
        selectlimit($sql,$num,$start)
        getone($sql,true)
        getrow($sql)
        getall($sql)
     */

    // namespace Org\Util;

    class Mysqli{
        var $link_id = NULL;
        var $settings = array();
        var $queryCount = 0;
        var $queryTime = '';
        var $queryLog = array();
        var $max_cache_time = 0; // 最大的缓存时间,以秒为单位
        var $cache_data_dir = 'temp/query_caches/'; //缓存位置
        var $root_path = '';
        var $error_message = array(); //报错信息
        var $platform = ''; //操作系统 
        var $version = ''; //PHP版本号
        var $dbhash = '';
        var $starttime = 0; //连接时间
        var $timeline = 0;
        var $timezone = 0;
        var $mysql_config_cache_file_time = 0;

        /*
         * 构造函数
         * $dbhost  : 主机地址
         * $dbuser  :用户名
         * $dbpw    :密码
         * $dbname  :数据库名
         * $charset :编码
         * $pconnect 
         * $quiet   :
         */
        function __construct($dbhost, $dbuser, $dbpw, $dbname = '', $charset = 'gbk', $pconnect = 0, $quiet = 0) {
            $this->cls_mysql($dbhost, $dbuser, $dbpw, $dbname, $charset, $pconnect, $quiet);
        }

        function cls_mysql($dbhost, $dbuser, $dbpw, $dbname = '', $charset = 'gbk', $pconnect = 0, $quiet = 0) {
            if (defined('EC_CHARSET')) {
                $charset = strtolower(str_replace('-', '', EC_CHARSET));
            }
            if (defined('ROOT_PATH') && !$this->root_path) {
                $this->root_path = ROOT_PATH;
            }
            if ($quiet) {
                $this->connect($dbhost, $dbuser, $dbpw, $dbname, $charset, $pconnect, $quiet);
            } else {
                $this->settings = array(
                    'dbhost' => $dbhost,
                    'dbuser' => $dbuser,
                    'dbpw' => $dbpw,
                    'dbname' => $dbname,
                    'charset' => $charset,
                    'pconnect' => $pconnect
                );
            }
        }

        function connect($dbhost, $dbuser, $dbpw, $dbname = '', $charset = 'utf8', $pconnect = 0, $quiet = 0) {
            if ($pconnect) {
                if (!($this->link_id = @mysql_pconnect($dbhost, $dbuser, $dbpw))) {
                    if (!$quiet) {
                        $this->ErrorMsg("Can't pConnect MySQL Server($dbhost)!");
                    }

                    return false;
                }
            } else {
                if (PHP_VERSION >= '4.2') {
                    $this->link_id = @mysql_connect($dbhost, $dbuser, $dbpw, true);
                } else {
                    $this->link_id = @mysql_connect($dbhost, $dbuser, $dbpw);

                    mt_srand((double) microtime() * 1000000); // 对 PHP 4.2 以下的版本进行随机数函数的初始化工作
                }
                if (!$this->link_id) {
                    if (!$quiet) {
                        $this->ErrorMsg("Can't Connect MySQL Server($dbhost)!");
                    }

                    return false;
                }
            }

            $this->dbhash = md5($this->root_path . $dbhost . $dbuser . $dbpw . $dbname);
            $this->version = mysql_get_server_info($this->link_id);

            /* 如果mysql 版本是 4.1+ 以上,需要对字符集进行初始化 */
            if ($this->version > '4.1') {
                if ($charset != 'latin1') {
                    mysql_query("SET character_set_connection=$charset, character_set_results=$charset, character_set_client=binary", $this->link_id);
                }
                if ($this->version > '5.0.1') {
                    mysql_query("SET sql_mode=''", $this->link_id);
                }
            }

            $sqlcache_config_file = $this->root_path . $this->cache_data_dir . 'sqlcache_config_file_' . $this->dbhash . '.php';

            @include($sqlcache_config_file);

            $this->starttime = time();

            if ($this->max_cache_time && $this->starttime > $this->mysql_config_cache_file_time + $this->max_cache_time) {
                if ($dbhost != '.') {
                    $result = mysql_query("SHOW VARIABLES LIKE 'basedir'", $this->link_id);
                    $row = mysql_fetch_assoc($result);
                    if (!empty($row['Value']{1}) && $row['Value']{1} == ':' && !empty($row['Value']{2}) && $row['Value']{2} == "\\") {
                        $this->platform = 'WINDOWS';
                    } else {
                        $this->platform = 'OTHER';
                    }
                } else {
                    $this->platform = 'WINDOWS';
                }

                if ($this->platform == 'OTHER' &&
                        ($dbhost != '.' && strtolower($dbhost) != 'localhost:3306' && $dbhost != '127.0.0.1:3306') ||
                        (PHP_VERSION >= '5.1' && date_default_timezone_get() == 'UTC')) {
                    $result = mysql_query("SELECT UNIX_TIMESTAMP() AS timeline, UNIX_TIMESTAMP('" . date('Y-m-d H:i:s', $this->starttime) . "') AS timezone", $this->link_id);
                    $row = mysql_fetch_assoc($result);

                    if ($dbhost != '.' && strtolower($dbhost) != 'localhost:3306' && $dbhost != '127.0.0.1:3306') {
                        $this->timeline = $this->starttime - $row['timeline'];
                    }

                    if (PHP_VERSION >= '5.1' && date_default_timezone_get() == 'UTC') {
                        $this->timezone = $this->starttime - $row['timezone'];
                    }
                }

                $content = '<' . "?php\r\n" .
                        '$this->mysql_config_cache_file_time = ' . $this->starttime . ";\r\n" .
                        '$this->timeline = ' . $this->timeline . ";\r\n" .
                        '$this->timezone = ' . $this->timezone . ";\r\n" .
                        '$this->platform = ' . "'" . $this->platform . "';\r\n?" . '>';

                @file_put_contents($sqlcache_config_file, $content);
            }

            /* 选择数据库 */
            if ($dbname) {
                if (mysql_select_db($dbname, $this->link_id) === false) {
                    if (!$quiet) {
                        $this->ErrorMsg("Can't select MySQL database($dbname)!");
                    }

                    return false;
                } else {
                    return true;
                }
            } else {
                return true;
            }
        }

        /*
         * 选择数据库
         * 数据库名称
         */
        function select_database($dbname) {
            return mysql_select_db($dbname, $this->link_id);
        }

        /*
         * 设计编码
         */
        function set_mysql_charset($charset) {/* 如果mysql 版本是 4.1+ 以上,需要对字符集进行初始化 */
            if ($this->version > '4.1') {
                if (in_array(strtolower($charset), array('gbk', 'big5', 'utf-8', 'utf8'))) {
                    $charset = str_replace('-', '', $charset);
                }
                if ($charset != 'latin1') {
                    mysql_query("SET character_set_connection=$charset, character_set_results=$charset, character_set_client=binary", $this->link_id);
                }
            }
        }

        /*
         * 从结果集中取得一行数字或关联数组
         * $query       :结果集
         * $result_type :返回哪种结果
                MYSQL_ASSOC 关联数组
                MYSQL_NUM   数字数组
                MYSQL_BOTH  两者(默认)
         */
        function fetch_array($query, $result_type = MYSQL_BOTH) {
            return mysql_fetch_array($query, $result_type);
        }

        /*
         * 执行一条SQL语句
         * $sql  :将要执行的 sql 语句
         */
        function query($sql, $type = '') {
            if ($this->link_id === NULL) {
                $this->connect($this->settings['dbhost'], $this->settings['dbuser'], $this->settings['dbpw'], $this->settings['dbname'], $this->settings['charset'], $this->settings['pconnect']);
                $this->settings = array();
            }

            if ($this->queryCount++ <= 99) {
                $this->queryLog[] = $sql;
            }
            if ($this->queryTime == '') {
                if (PHP_VERSION >= '5.0.0') {
                    $this->queryTime = microtime(true);
                } else {
                    $this->queryTime = microtime();
                }
            }

            /* 当当前的时间大于类初始化时间的时候,自动执行 ping 这个自动重新连接操作 */
            if (PHP_VERSION >= '4.3' && time() > $this->starttime + 1) {
                mysql_ping($this->link_id);
            }

            if (!($query = mysql_query($sql, $this->link_id)) && $type != 'SILENT') {
                $this->error_message[]['message'] = 'MySQL Query Error';
                $this->error_message[]['sql'] = $sql;
                $this->error_message[]['error'] = mysql_error($this->link_id);
                $this->error_message[]['errno'] = mysql_errno($this->link_id);

                $this->ErrorMsg();

                return false;
            }

            if (defined('DEBUG_MODE') && (DEBUG_MODE & 8) == 8) {
                $logfilename = $this->root_path . DATA_DIR . '/mysql_query_' . $this->dbhash . '_' . date('Y_m_d') . '.log';
                $str = $sql . "\n\n";

                if (PHP_VERSION >= '5.0') {
                    file_put_contents($logfilename, $str, FILE_APPEND);
                } else {
                    $fp = @fopen($logfilename, 'ab+');
                    if ($fp) {
                        fwrite($fp, $str);
                        fclose($fp);
                    }
                }
            }
            return $query;
        }

        /*
         * 返回前一次 MySQL 操作所影响的记录行数。
         */
        function affected_rows() {
            return mysql_affected_rows($this->link_id);
        }

        /*
         * 返回上一个 SQL 操作产生的文本错误信息
         */
        function error() {
            return mysql_error($this->link_id);
        }

        /*
         * 返回上一个 SQL 操作产生的错误信息的数字编码
         */
        function errno() {
            return mysql_errno($this->link_id);
        }

        /*
         * 返回结果集中一个字段的值
         * $query :结果集
         * $row   :行号。默认从0行开始
         * $field :获取哪个字段。默认指定行第一个字段
         */
        function result($query, $row ,$field) {
            return @mysql_result($query, $row, $field);
        }

        /*
         * 返回结果集中行的数目
         * $query :结果集
         */
        function num_rows($query) {
            return mysql_num_rows($query);
        }

        /*
         * 返回结果集中字段的数目
         * $query :结果集
         */
        function num_fields($query) {
            return mysql_num_fields($query);
        }

        /*
         * 释放结果内存
         * $query :结果集
         */
        function free_result($query){
            return mysql_free_result($query);
        }

        /*
         * 返回上一个 SQL 操作产生的ID
         */
        function insert_id() {
            return mysql_insert_id($this->link_id);
        }

        /*
         * 从结果集中取得一行做为关联数组返回
         * $query :结果集
         */
        function fetchRow($query) {
            return mysql_fetch_assoc($query);
        }

        /*
         * 从结果集中取得列信息做为对象返回
         */
        function fetch_fields($query) {
            return mysql_fetch_field($query);
        }

        /*
         * 返回 PHP 版本号
         */
        function version() {
            return $this->version;
        }

        /*
         * 用于空闲很久的脚本来检查服务器是否关闭了连接
         */
        function ping() {
            if (PHP_VERSION >= '4.3') {
                return mysql_ping($this->link_id);
            } else {
                return false;
            }
        }

        /*
         * 转义 SQL 语句中使用的字符串中的特殊字符
         */
        function escape_string($unescaped_string){
            if (PHP_VERSION >= '4.3') {
                return mysql_real_escape_string($unescaped_string);
            } else {
                return mysql_escape_string($unescaped_string);
            }
        }

        /*
         * 关闭连接
         */
        function close() {
            return mysql_close($this->link_id);
        }

        /*
         * 输出错误信息
         * $message :提示信息
         */
        function error_msg($message = ''){
            if($message){
                echo "<b>出错了~</b> $message\n\n<br /><br />";
            }else{
                echo "<b>MySQL server error report:</b>";
                print_r($this->error_message);
            }
            exit;
        }

        /*
         * 拼接limit
         * $sql :sql语句
         * $num :数量
         * $start :起始位置
         */
        function selectlimit($sql, $num ,$start = 0){
            if($start){
                $sql .= ' LIMIT ' . $start;
            }else{
                $sql .= ' LIMIT ' . $start . ',' . $num;
            }
        }

        /*
         * 返回结果集中的第一条数据,一般用于查询某条件的某个字段值
         * ps:select uid from user where username = '';结果直接是 uid值
         * $sql :要执行的 SQL 语句
         * $limited :是否查询一条
         */
        function getone($sql, $limited = false) {
            if ($limited == true) {
                $sql = trim($sql . ' LIMIT 1');
            }

            $res = $this->query($sql);
            if ($res !== false) {
                $row = mysql_fetch_row($res);

                if ($row !== false) {
                    return $row[0];
                } else {
                    return '';
                }
            } else {
                return false;
            }
        }

        /*
         * 从结果集中取出一行做为关联数组
         */
        function getrow($sql, $limited = false) {
            if ($limited == true) {
                $sql = trim($sql . ' LIMIT 1');
            }

            $res = $this->query($sql);
            if ($res !== false) {
                return mysql_fetch_assoc($res);
            } else {
                return false;
            }
        }

        /*
         * 返回结果集所有内容
         */
        function getall($sql) {
            $res = $this->query($sql);
            if ($res !== false) {
                $arr = array();
                while ($row = mysql_fetch_assoc($res)) {
                    $arr[] = $row;
                }

                return $arr;
            } else {
                return false;
            }
        }

    }

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475
  • 476
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/558111
推荐阅读
相关标签
  

闽ICP备14008679号