]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/wp-db.php
WordPress 4.2.1-scripts
[autoinstalls/wordpress.git] / wp-includes / wp-db.php
1 <?php
2 /**
3  * WordPress DB Class
4  *
5  * Original code from {@link http://php.justinvincent.com Justin Vincent (justin@visunet.ie)}
6  *
7  * @package WordPress
8  * @subpackage Database
9  * @since 0.71
10  */
11
12 /**
13  * @since 0.71
14  */
15 define( 'EZSQL_VERSION', 'WP1.25' );
16
17 /**
18  * @since 0.71
19  */
20 define( 'OBJECT', 'OBJECT' );
21 define( 'object', 'OBJECT' ); // Back compat.
22
23 /**
24  * @since 2.5.0
25  */
26 define( 'OBJECT_K', 'OBJECT_K' );
27
28 /**
29  * @since 0.71
30  */
31 define( 'ARRAY_A', 'ARRAY_A' );
32
33 /**
34  * @since 0.71
35  */
36 define( 'ARRAY_N', 'ARRAY_N' );
37
38 /**
39  * WordPress Database Access Abstraction Object
40  *
41  * It is possible to replace this class with your own
42  * by setting the $wpdb global variable in wp-content/db.php
43  * file to your class. The wpdb class will still be included,
44  * so you can extend it or simply use your own.
45  *
46  * @link https://codex.wordpress.org/Function_Reference/wpdb_Class
47  *
48  * @package WordPress
49  * @subpackage Database
50  * @since 0.71
51  */
52 class wpdb {
53
54         /**
55          * Whether to show SQL/DB errors.
56          *
57          * Default behavior is to show errors if both WP_DEBUG and WP_DEBUG_DISPLAY
58          * evaluated to true.
59          *
60          * @since 0.71
61          * @access private
62          * @var bool
63          */
64         var $show_errors = false;
65
66         /**
67          * Whether to suppress errors during the DB bootstrapping.
68          *
69          * @access private
70          * @since 2.5.0
71          * @var bool
72          */
73         var $suppress_errors = false;
74
75         /**
76          * The last error during query.
77          *
78          * @since 2.5.0
79          * @var string
80          */
81         public $last_error = '';
82
83         /**
84          * Amount of queries made
85          *
86          * @since 1.2.0
87          * @access private
88          * @var int
89          */
90         var $num_queries = 0;
91
92         /**
93          * Count of rows returned by previous query
94          *
95          * @since 0.71
96          * @access private
97          * @var int
98          */
99         var $num_rows = 0;
100
101         /**
102          * Count of affected rows by previous query
103          *
104          * @since 0.71
105          * @access private
106          * @var int
107          */
108         var $rows_affected = 0;
109
110         /**
111          * The ID generated for an AUTO_INCREMENT column by the previous query (usually INSERT).
112          *
113          * @since 0.71
114          * @access public
115          * @var int
116          */
117         var $insert_id = 0;
118
119         /**
120          * Last query made
121          *
122          * @since 0.71
123          * @access private
124          * @var array
125          */
126         var $last_query;
127
128         /**
129          * Results of the last query made
130          *
131          * @since 0.71
132          * @access private
133          * @var array|null
134          */
135         var $last_result;
136
137         /**
138          * MySQL result, which is either a resource or boolean.
139          *
140          * @since 0.71
141          * @access protected
142          * @var mixed
143          */
144         protected $result;
145
146         /**
147          * Cached column info, for sanity checking data before inserting
148          *
149          * @since 4.2.0
150          * @access protected
151          * @var array
152          */
153         protected $col_meta = array();
154
155         /**
156          * Calculated character sets on tables
157          *
158          * @since 4.2.0
159          * @access protected
160          * @var array
161          */
162         protected $table_charset = array();
163
164         /**
165          * Whether text fields in the current query need to be sanity checked.
166          *
167          * @since 4.2.0
168          * @access protected
169          * @var bool
170          */
171         protected $check_current_query = true;
172
173         /**
174          * Flag to ensure we don't run into recursion problems when checking the collation.
175          *
176          * @since 4.2.0
177          * @access private
178          * @see wpdb::check_safe_collation()
179          * @var boolean
180          */
181         private $checking_collation = false;
182
183         /**
184          * Saved info on the table column
185          *
186          * @since 0.71
187          * @access protected
188          * @var array
189          */
190         protected $col_info;
191
192         /**
193          * Saved queries that were executed
194          *
195          * @since 1.5.0
196          * @access private
197          * @var array
198          */
199         var $queries;
200
201         /**
202          * The number of times to retry reconnecting before dying.
203          *
204          * @since 3.9.0
205          * @access protected
206          * @see wpdb::check_connection()
207          * @var int
208          */
209         protected $reconnect_retries = 5;
210
211         /**
212          * WordPress table prefix
213          *
214          * You can set this to have multiple WordPress installations
215          * in a single database. The second reason is for possible
216          * security precautions.
217          *
218          * @since 2.5.0
219          * @access private
220          * @var string
221          */
222         var $prefix = '';
223
224         /**
225          * WordPress base table prefix.
226          *
227          * @since 3.0.0
228          * @access public
229          * @var string
230          */
231          public $base_prefix;
232
233         /**
234          * Whether the database queries are ready to start executing.
235          *
236          * @since 2.3.2
237          * @access private
238          * @var bool
239          */
240         var $ready = false;
241
242         /**
243          * Blog ID.
244          *
245          * @since 3.0.0
246          * @access public
247          * @var int
248          */
249         public $blogid = 0;
250
251         /**
252          * Site ID.
253          *
254          * @since 3.0.0
255          * @access public
256          * @var int
257          */
258         public $siteid = 0;
259
260         /**
261          * List of WordPress per-blog tables
262          *
263          * @since 2.5.0
264          * @access private
265          * @see wpdb::tables()
266          * @var array
267          */
268         var $tables = array( 'posts', 'comments', 'links', 'options', 'postmeta',
269                 'terms', 'term_taxonomy', 'term_relationships', 'commentmeta' );
270
271         /**
272          * List of deprecated WordPress tables
273          *
274          * categories, post2cat, and link2cat were deprecated in 2.3.0, db version 5539
275          *
276          * @since 2.9.0
277          * @access private
278          * @see wpdb::tables()
279          * @var array
280          */
281         var $old_tables = array( 'categories', 'post2cat', 'link2cat' );
282
283         /**
284          * List of WordPress global tables
285          *
286          * @since 3.0.0
287          * @access private
288          * @see wpdb::tables()
289          * @var array
290          */
291         var $global_tables = array( 'users', 'usermeta' );
292
293         /**
294          * List of Multisite global tables
295          *
296          * @since 3.0.0
297          * @access private
298          * @see wpdb::tables()
299          * @var array
300          */
301         var $ms_global_tables = array( 'blogs', 'signups', 'site', 'sitemeta',
302                 'sitecategories', 'registration_log', 'blog_versions' );
303
304         /**
305          * WordPress Comments table
306          *
307          * @since 1.5.0
308          * @access public
309          * @var string
310          */
311         public $comments;
312
313         /**
314          * WordPress Comment Metadata table
315          *
316          * @since 2.9.0
317          * @access public
318          * @var string
319          */
320         public $commentmeta;
321
322         /**
323          * WordPress Links table
324          *
325          * @since 1.5.0
326          * @access public
327          * @var string
328          */
329         public $links;
330
331         /**
332          * WordPress Options table
333          *
334          * @since 1.5.0
335          * @access public
336          * @var string
337          */
338         public $options;
339
340         /**
341          * WordPress Post Metadata table
342          *
343          * @since 1.5.0
344          * @access public
345          * @var string
346          */
347         public $postmeta;
348
349         /**
350          * WordPress Posts table
351          *
352          * @since 1.5.0
353          * @access public
354          * @var string
355          */
356         public $posts;
357
358         /**
359          * WordPress Terms table
360          *
361          * @since 2.3.0
362          * @access public
363          * @var string
364          */
365         public $terms;
366
367         /**
368          * WordPress Term Relationships table
369          *
370          * @since 2.3.0
371          * @access public
372          * @var string
373          */
374         public $term_relationships;
375
376         /**
377          * WordPress Term Taxonomy table
378          *
379          * @since 2.3.0
380          * @access public
381          * @var string
382          */
383         public $term_taxonomy;
384
385         /*
386          * Global and Multisite tables
387          */
388
389         /**
390          * WordPress User Metadata table
391          *
392          * @since 2.3.0
393          * @access public
394          * @var string
395          */
396         public $usermeta;
397
398         /**
399          * WordPress Users table
400          *
401          * @since 1.5.0
402          * @access public
403          * @var string
404          */
405         public $users;
406
407         /**
408          * Multisite Blogs table
409          *
410          * @since 3.0.0
411          * @access public
412          * @var string
413          */
414         public $blogs;
415
416         /**
417          * Multisite Blog Versions table
418          *
419          * @since 3.0.0
420          * @access public
421          * @var string
422          */
423         public $blog_versions;
424
425         /**
426          * Multisite Registration Log table
427          *
428          * @since 3.0.0
429          * @access public
430          * @var string
431          */
432         public $registration_log;
433
434         /**
435          * Multisite Signups table
436          *
437          * @since 3.0.0
438          * @access public
439          * @var string
440          */
441         public $signups;
442
443         /**
444          * Multisite Sites table
445          *
446          * @since 3.0.0
447          * @access public
448          * @var string
449          */
450         public $site;
451
452         /**
453          * Multisite Sitewide Terms table
454          *
455          * @since 3.0.0
456          * @access public
457          * @var string
458          */
459         public $sitecategories;
460
461         /**
462          * Multisite Site Metadata table
463          *
464          * @since 3.0.0
465          * @access public
466          * @var string
467          */
468         public $sitemeta;
469
470         /**
471          * Format specifiers for DB columns. Columns not listed here default to %s. Initialized during WP load.
472          *
473          * Keys are column names, values are format types: 'ID' => '%d'
474          *
475          * @since 2.8.0
476          * @see wpdb::prepare()
477          * @see wpdb::insert()
478          * @see wpdb::update()
479          * @see wpdb::delete()
480          * @see wp_set_wpdb_vars()
481          * @access public
482          * @var array
483          */
484         public $field_types = array();
485
486         /**
487          * Database table columns charset
488          *
489          * @since 2.2.0
490          * @access public
491          * @var string
492          */
493         public $charset;
494
495         /**
496          * Database table columns collate
497          *
498          * @since 2.2.0
499          * @access public
500          * @var string
501          */
502         public $collate;
503
504         /**
505          * Database Username
506          *
507          * @since 2.9.0
508          * @access protected
509          * @var string
510          */
511         protected $dbuser;
512
513         /**
514          * Database Password
515          *
516          * @since 3.1.0
517          * @access protected
518          * @var string
519          */
520         protected $dbpassword;
521
522         /**
523          * Database Name
524          *
525          * @since 3.1.0
526          * @access protected
527          * @var string
528          */
529         protected $dbname;
530
531         /**
532          * Database Host
533          *
534          * @since 3.1.0
535          * @access protected
536          * @var string
537          */
538         protected $dbhost;
539
540         /**
541          * Database Handle
542          *
543          * @since 0.71
544          * @access protected
545          * @var string
546          */
547         protected $dbh;
548
549         /**
550          * A textual description of the last query/get_row/get_var call
551          *
552          * @since 3.0.0
553          * @access public
554          * @var string
555          */
556         public $func_call;
557
558         /**
559          * Whether MySQL is used as the database engine.
560          *
561          * Set in WPDB::db_connect() to true, by default. This is used when checking
562          * against the required MySQL version for WordPress. Normally, a replacement
563          * database drop-in (db.php) will skip these checks, but setting this to true
564          * will force the checks to occur.
565          *
566          * @since 3.3.0
567          * @access public
568          * @var bool
569          */
570         public $is_mysql = null;
571
572         /**
573          * A list of incompatible SQL modes.
574          *
575          * @since 3.9.0
576          * @access protected
577          * @var array
578          */
579         protected $incompatible_modes = array( 'NO_ZERO_DATE', 'ONLY_FULL_GROUP_BY',
580                 'STRICT_TRANS_TABLES', 'STRICT_ALL_TABLES', 'TRADITIONAL' );
581
582         /**
583          * Whether to use mysqli over mysql.
584          *
585          * @since 3.9.0
586          * @access private
587          * @var bool
588          */
589         private $use_mysqli = false;
590
591         /**
592          * Whether we've managed to successfully connect at some point
593          *
594          * @since 3.9.0
595          * @access private
596          * @var bool
597          */
598         private $has_connected = false;
599
600         /**
601          * Connects to the database server and selects a database
602          *
603          * PHP5 style constructor for compatibility with PHP5. Does
604          * the actual setting up of the class properties and connection
605          * to the database.
606          *
607          * @link https://core.trac.wordpress.org/ticket/3354
608          * @since 2.0.8
609          *
610          * @param string $dbuser MySQL database user
611          * @param string $dbpassword MySQL database password
612          * @param string $dbname MySQL database name
613          * @param string $dbhost MySQL database host
614          */
615         public function __construct( $dbuser, $dbpassword, $dbname, $dbhost ) {
616                 register_shutdown_function( array( $this, '__destruct' ) );
617
618                 if ( WP_DEBUG && WP_DEBUG_DISPLAY )
619                         $this->show_errors();
620
621                 /* Use ext/mysqli if it exists and:
622                  *  - WP_USE_EXT_MYSQL is defined as false, or
623                  *  - We are a development version of WordPress, or
624                  *  - We are running PHP 5.5 or greater, or
625                  *  - ext/mysql is not loaded.
626                  */
627                 if ( function_exists( 'mysqli_connect' ) ) {
628                         if ( defined( 'WP_USE_EXT_MYSQL' ) ) {
629                                 $this->use_mysqli = ! WP_USE_EXT_MYSQL;
630                         } elseif ( version_compare( phpversion(), '5.5', '>=' ) || ! function_exists( 'mysql_connect' ) ) {
631                                 $this->use_mysqli = true;
632                         } elseif ( false !== strpos( $GLOBALS['wp_version'], '-' ) ) {
633                                 $this->use_mysqli = true;
634                         }
635                 }
636
637                 $this->dbuser = $dbuser;
638                 $this->dbpassword = $dbpassword;
639                 $this->dbname = $dbname;
640                 $this->dbhost = $dbhost;
641
642                 // wp-config.php creation will manually connect when ready.
643                 if ( defined( 'WP_SETUP_CONFIG' ) ) {
644                         return;
645                 }
646
647                 $this->db_connect();
648         }
649
650         /**
651          * PHP5 style destructor and will run when database object is destroyed.
652          *
653          * @see wpdb::__construct()
654          * @since 2.0.8
655          * @return bool true
656          */
657         public function __destruct() {
658                 return true;
659         }
660
661         /**
662          * PHP5 style magic getter, used to lazy-load expensive data.
663          *
664          * @since 3.5.0
665          *
666          * @param string $name The private member to get, and optionally process
667          * @return mixed The private member
668          */
669         public function __get( $name ) {
670                 if ( 'col_info' === $name )
671                         $this->load_col_info();
672
673                 return $this->$name;
674         }
675
676         /**
677          * Magic function, for backwards compatibility.
678          *
679          * @since 3.5.0
680          *
681          * @param string $name  The private member to set
682          * @param mixed  $value The value to set
683          */
684         public function __set( $name, $value ) {
685                 $protected_members = array(
686                         'col_meta',
687                         'table_charset',
688                         'check_current_query',
689                 );
690                 if (  in_array( $name, $protected_members, true ) ) {
691                         return;
692                 }
693                 $this->$name = $value;
694         }
695
696         /**
697          * Magic function, for backwards compatibility.
698          *
699          * @since 3.5.0
700          *
701          * @param string $name  The private member to check
702          *
703          * @return bool If the member is set or not
704          */
705         public function __isset( $name ) {
706                 return isset( $this->$name );
707         }
708
709         /**
710          * Magic function, for backwards compatibility.
711          *
712          * @since 3.5.0
713          *
714          * @param string $name  The private member to unset
715          */
716         public function __unset( $name ) {
717                 unset( $this->$name );
718         }
719
720         /**
721          * Set $this->charset and $this->collate
722          *
723          * @since 3.1.0
724          */
725         public function init_charset() {
726                 if ( function_exists('is_multisite') && is_multisite() ) {
727                         $this->charset = 'utf8';
728                         if ( defined( 'DB_COLLATE' ) && DB_COLLATE ) {
729                                 $this->collate = DB_COLLATE;
730                         } else {
731                                 $this->collate = 'utf8_general_ci';
732                         }
733                 } elseif ( defined( 'DB_COLLATE' ) ) {
734                         $this->collate = DB_COLLATE;
735                 }
736
737                 if ( defined( 'DB_CHARSET' ) ) {
738                         $this->charset = DB_CHARSET;
739                 }
740
741                 if ( ( $this->use_mysqli && ! ( $this->dbh instanceof mysqli ) )
742                   || ( empty( $this->dbh ) || ! ( $this->dbh instanceof mysqli ) ) ) {
743                         return;
744                 }
745
746                 if ( 'utf8' === $this->charset && $this->has_cap( 'utf8mb4' ) ) {
747                         $this->charset = 'utf8mb4';
748                 }
749
750                 if ( 'utf8mb4' === $this->charset && ( ! $this->collate || stripos( $this->collate, 'utf8_' ) === 0 ) ) {
751                         $this->collate = 'utf8mb4_unicode_ci';
752                 }
753         }
754
755         /**
756          * Sets the connection's character set.
757          *
758          * @since 3.1.0
759          *
760          * @param resource $dbh     The resource given by mysql_connect
761          * @param string   $charset Optional. The character set. Default null.
762          * @param string   $collate Optional. The collation. Default null.
763          */
764         public function set_charset( $dbh, $charset = null, $collate = null ) {
765                 if ( ! isset( $charset ) )
766                         $charset = $this->charset;
767                 if ( ! isset( $collate ) )
768                         $collate = $this->collate;
769                 if ( $this->has_cap( 'collation' ) && ! empty( $charset ) ) {
770                         if ( $this->use_mysqli ) {
771                                 if ( function_exists( 'mysqli_set_charset' ) && $this->has_cap( 'set_charset' ) ) {
772                                         mysqli_set_charset( $dbh, $charset );
773                                 } else {
774                                         $query = $this->prepare( 'SET NAMES %s', $charset );
775                                         if ( ! empty( $collate ) )
776                                                 $query .= $this->prepare( ' COLLATE %s', $collate );
777                                         mysqli_query( $dbh, $query );
778                                 }
779                         } else {
780                                 if ( function_exists( 'mysql_set_charset' ) && $this->has_cap( 'set_charset' ) ) {
781                                         mysql_set_charset( $charset, $dbh );
782                                 } else {
783                                         $query = $this->prepare( 'SET NAMES %s', $charset );
784                                         if ( ! empty( $collate ) )
785                                                 $query .= $this->prepare( ' COLLATE %s', $collate );
786                                         mysql_query( $query, $dbh );
787                                 }
788                         }
789                 }
790         }
791
792         /**
793          * Change the current SQL mode, and ensure its WordPress compatibility.
794          *
795          * If no modes are passed, it will ensure the current MySQL server
796          * modes are compatible.
797          *
798          * @since 3.9.0
799          *
800          * @param array $modes Optional. A list of SQL modes to set.
801          */
802         public function set_sql_mode( $modes = array() ) {
803                 if ( empty( $modes ) ) {
804                         if ( $this->use_mysqli ) {
805                                 $res = mysqli_query( $this->dbh, 'SELECT @@SESSION.sql_mode' );
806                         } else {
807                                 $res = mysql_query( 'SELECT @@SESSION.sql_mode', $this->dbh );
808                         }
809
810                         if ( empty( $res ) ) {
811                                 return;
812                         }
813
814                         if ( $this->use_mysqli ) {
815                                 $modes_array = mysqli_fetch_array( $res );
816                                 if ( empty( $modes_array[0] ) ) {
817                                         return;
818                                 }
819                                 $modes_str = $modes_array[0];
820                         } else {
821                                 $modes_str = mysql_result( $res, 0 );
822                         }
823
824                         if ( empty( $modes_str ) ) {
825                                 return;
826                         }
827
828                         $modes = explode( ',', $modes_str );
829                 }
830
831                 $modes = array_change_key_case( $modes, CASE_UPPER );
832
833                 /**
834                  * Filter the list of incompatible SQL modes to exclude.
835                  *
836                  * @since 3.9.0
837                  *
838                  * @param array $incompatible_modes An array of incompatible modes.
839                  */
840                 $incompatible_modes = (array) apply_filters( 'incompatible_sql_modes', $this->incompatible_modes );
841
842                 foreach( $modes as $i => $mode ) {
843                         if ( in_array( $mode, $incompatible_modes ) ) {
844                                 unset( $modes[ $i ] );
845                         }
846                 }
847
848                 $modes_str = implode( ',', $modes );
849
850                 if ( $this->use_mysqli ) {
851                         mysqli_query( $this->dbh, "SET SESSION sql_mode='$modes_str'" );
852                 } else {
853                         mysql_query( "SET SESSION sql_mode='$modes_str'", $this->dbh );
854                 }
855         }
856
857         /**
858          * Sets the table prefix for the WordPress tables.
859          *
860          * @since 2.5.0
861          *
862          * @param string $prefix Alphanumeric name for the new prefix.
863          * @param bool $set_table_names Optional. Whether the table names, e.g. wpdb::$posts, should be updated or not.
864          * @return string|WP_Error Old prefix or WP_Error on error
865          */
866         public function set_prefix( $prefix, $set_table_names = true ) {
867
868                 if ( preg_match( '|[^a-z0-9_]|i', $prefix ) )
869                         return new WP_Error('invalid_db_prefix', 'Invalid database prefix' );
870
871                 $old_prefix = is_multisite() ? '' : $prefix;
872
873                 if ( isset( $this->base_prefix ) )
874                         $old_prefix = $this->base_prefix;
875
876                 $this->base_prefix = $prefix;
877
878                 if ( $set_table_names ) {
879                         foreach ( $this->tables( 'global' ) as $table => $prefixed_table )
880                                 $this->$table = $prefixed_table;
881
882                         if ( is_multisite() && empty( $this->blogid ) )
883                                 return $old_prefix;
884
885                         $this->prefix = $this->get_blog_prefix();
886
887                         foreach ( $this->tables( 'blog' ) as $table => $prefixed_table )
888                                 $this->$table = $prefixed_table;
889
890                         foreach ( $this->tables( 'old' ) as $table => $prefixed_table )
891                                 $this->$table = $prefixed_table;
892                 }
893                 return $old_prefix;
894         }
895
896         /**
897          * Sets blog id.
898          *
899          * @since 3.0.0
900          * @access public
901          * @param int $blog_id
902          * @param int $site_id Optional.
903          * @return int previous blog id
904          */
905         public function set_blog_id( $blog_id, $site_id = 0 ) {
906                 if ( ! empty( $site_id ) )
907                         $this->siteid = $site_id;
908
909                 $old_blog_id  = $this->blogid;
910                 $this->blogid = $blog_id;
911
912                 $this->prefix = $this->get_blog_prefix();
913
914                 foreach ( $this->tables( 'blog' ) as $table => $prefixed_table )
915                         $this->$table = $prefixed_table;
916
917                 foreach ( $this->tables( 'old' ) as $table => $prefixed_table )
918                         $this->$table = $prefixed_table;
919
920                 return $old_blog_id;
921         }
922
923         /**
924          * Gets blog prefix.
925          *
926          * @since 3.0.0
927          * @param int $blog_id Optional.
928          * @return string Blog prefix.
929          */
930         public function get_blog_prefix( $blog_id = null ) {
931                 if ( is_multisite() ) {
932                         if ( null === $blog_id )
933                                 $blog_id = $this->blogid;
934                         $blog_id = (int) $blog_id;
935                         if ( defined( 'MULTISITE' ) && ( 0 == $blog_id || 1 == $blog_id ) )
936                                 return $this->base_prefix;
937                         else
938                                 return $this->base_prefix . $blog_id . '_';
939                 } else {
940                         return $this->base_prefix;
941                 }
942         }
943
944         /**
945          * Returns an array of WordPress tables.
946          *
947          * Also allows for the CUSTOM_USER_TABLE and CUSTOM_USER_META_TABLE to
948          * override the WordPress users and usermeta tables that would otherwise
949          * be determined by the prefix.
950          *
951          * The scope argument can take one of the following:
952          *
953          * 'all' - returns 'all' and 'global' tables. No old tables are returned.
954          * 'blog' - returns the blog-level tables for the queried blog.
955          * 'global' - returns the global tables for the installation, returning multisite tables only if running multisite.
956          * 'ms_global' - returns the multisite global tables, regardless if current installation is multisite.
957          * 'old' - returns tables which are deprecated.
958          *
959          * @since 3.0.0
960          * @uses wpdb::$tables
961          * @uses wpdb::$old_tables
962          * @uses wpdb::$global_tables
963          * @uses wpdb::$ms_global_tables
964          *
965          * @param string $scope Optional. Can be all, global, ms_global, blog, or old tables. Defaults to all.
966          * @param bool $prefix Optional. Whether to include table prefixes. Default true. If blog
967          *      prefix is requested, then the custom users and usermeta tables will be mapped.
968          * @param int $blog_id Optional. The blog_id to prefix. Defaults to wpdb::$blogid. Used only when prefix is requested.
969          * @return array Table names. When a prefix is requested, the key is the unprefixed table name.
970          */
971         public function tables( $scope = 'all', $prefix = true, $blog_id = 0 ) {
972                 switch ( $scope ) {
973                         case 'all' :
974                                 $tables = array_merge( $this->global_tables, $this->tables );
975                                 if ( is_multisite() )
976                                         $tables = array_merge( $tables, $this->ms_global_tables );
977                                 break;
978                         case 'blog' :
979                                 $tables = $this->tables;
980                                 break;
981                         case 'global' :
982                                 $tables = $this->global_tables;
983                                 if ( is_multisite() )
984                                         $tables = array_merge( $tables, $this->ms_global_tables );
985                                 break;
986                         case 'ms_global' :
987                                 $tables = $this->ms_global_tables;
988                                 break;
989                         case 'old' :
990                                 $tables = $this->old_tables;
991                                 break;
992                         default :
993                                 return array();
994                 }
995
996                 if ( $prefix ) {
997                         if ( ! $blog_id )
998                                 $blog_id = $this->blogid;
999                         $blog_prefix = $this->get_blog_prefix( $blog_id );
1000                         $base_prefix = $this->base_prefix;
1001                         $global_tables = array_merge( $this->global_tables, $this->ms_global_tables );
1002                         foreach ( $tables as $k => $table ) {
1003                                 if ( in_array( $table, $global_tables ) )
1004                                         $tables[ $table ] = $base_prefix . $table;
1005                                 else
1006                                         $tables[ $table ] = $blog_prefix . $table;
1007                                 unset( $tables[ $k ] );
1008                         }
1009
1010                         if ( isset( $tables['users'] ) && defined( 'CUSTOM_USER_TABLE' ) )
1011                                 $tables['users'] = CUSTOM_USER_TABLE;
1012
1013                         if ( isset( $tables['usermeta'] ) && defined( 'CUSTOM_USER_META_TABLE' ) )
1014                                 $tables['usermeta'] = CUSTOM_USER_META_TABLE;
1015                 }
1016
1017                 return $tables;
1018         }
1019
1020         /**
1021          * Selects a database using the current database connection.
1022          *
1023          * The database name will be changed based on the current database
1024          * connection. On failure, the execution will bail and display an DB error.
1025          *
1026          * @since 0.71
1027          *
1028          * @param string $db MySQL database name
1029          * @param resource $dbh Optional link identifier.
1030          * @return null Always null.
1031          */
1032         public function select( $db, $dbh = null ) {
1033                 if ( is_null($dbh) )
1034                         $dbh = $this->dbh;
1035
1036                 if ( $this->use_mysqli ) {
1037                         $success = @mysqli_select_db( $dbh, $db );
1038                 } else {
1039                         $success = @mysql_select_db( $db, $dbh );
1040                 }
1041                 if ( ! $success ) {
1042                         $this->ready = false;
1043                         if ( ! did_action( 'template_redirect' ) ) {
1044                                 wp_load_translations_early();
1045                                 $this->bail( sprintf( __( '<h1>Can&#8217;t select database</h1>
1046 <p>We were able to connect to the database server (which means your username and password is okay) but not able to select the <code>%1$s</code> database.</p>
1047 <ul>
1048 <li>Are you sure it exists?</li>
1049 <li>Does the user <code>%2$s</code> have permission to use the <code>%1$s</code> database?</li>
1050 <li>On some systems the name of your database is prefixed with your username, so it would be like <code>username_%1$s</code>. Could that be the problem?</li>
1051 </ul>
1052 <p>If you don\'t know how to set up a database you should <strong>contact your host</strong>. If all else fails you may find help at the <a href="https://wordpress.org/support/">WordPress Support Forums</a>.</p>' ), htmlspecialchars( $db, ENT_QUOTES ), htmlspecialchars( $this->dbuser, ENT_QUOTES ) ), 'db_select_fail' );
1053                         }
1054                         return;
1055                 }
1056         }
1057
1058         /**
1059          * Do not use, deprecated.
1060          *
1061          * Use esc_sql() or wpdb::prepare() instead.
1062          *
1063          * @since 2.8.0
1064          * @deprecated 3.6.0
1065          * @see wpdb::prepare
1066          * @see esc_sql()
1067          * @access private
1068          *
1069          * @param string $string
1070          * @return string
1071          */
1072         function _weak_escape( $string ) {
1073                 if ( func_num_args() === 1 && function_exists( '_deprecated_function' ) )
1074                         _deprecated_function( __METHOD__, '3.6', 'wpdb::prepare() or esc_sql()' );
1075                 return addslashes( $string );
1076         }
1077
1078         /**
1079          * Real escape, using mysqli_real_escape_string() or mysql_real_escape_string()
1080          *
1081          * @see mysqli_real_escape_string()
1082          * @see mysql_real_escape_string()
1083          * @since 2.8.0
1084          * @access private
1085          *
1086          * @param  string $string to escape
1087          * @return string escaped
1088          */
1089         function _real_escape( $string ) {
1090                 if ( $this->dbh ) {
1091                         if ( $this->use_mysqli ) {
1092                                 return mysqli_real_escape_string( $this->dbh, $string );
1093                         } else {
1094                                 return mysql_real_escape_string( $string, $this->dbh );
1095                         }
1096                 }
1097
1098                 $class = get_class( $this );
1099                 if ( function_exists( '__' ) ) {
1100                         _doing_it_wrong( $class, sprintf( __( '%s must set a database connection for use with escaping.' ), $class ), E_USER_NOTICE );
1101                 } else {
1102                         _doing_it_wrong( $class, sprintf( '%s must set a database connection for use with escaping.', $class ), E_USER_NOTICE );
1103                 }
1104                 return addslashes( $string );
1105         }
1106
1107         /**
1108          * Escape data. Works on arrays.
1109          *
1110          * @uses wpdb::_real_escape()
1111          * @since  2.8.0
1112          * @access private
1113          *
1114          * @param  string|array $data
1115          * @return string|array escaped
1116          */
1117         function _escape( $data ) {
1118                 if ( is_array( $data ) ) {
1119                         foreach ( $data as $k => $v ) {
1120                                 if ( is_array($v) )
1121                                         $data[$k] = $this->_escape( $v );
1122                                 else
1123                                         $data[$k] = $this->_real_escape( $v );
1124                         }
1125                 } else {
1126                         $data = $this->_real_escape( $data );
1127                 }
1128
1129                 return $data;
1130         }
1131
1132         /**
1133          * Do not use, deprecated.
1134          *
1135          * Use esc_sql() or wpdb::prepare() instead.
1136          *
1137          * @since 0.71
1138          * @deprecated 3.6.0
1139          * @see wpdb::prepare()
1140          * @see esc_sql()
1141          *
1142          * @param mixed $data
1143          * @return mixed
1144          */
1145         public function escape( $data ) {
1146                 if ( func_num_args() === 1 && function_exists( '_deprecated_function' ) )
1147                         _deprecated_function( __METHOD__, '3.6', 'wpdb::prepare() or esc_sql()' );
1148                 if ( is_array( $data ) ) {
1149                         foreach ( $data as $k => $v ) {
1150                                 if ( is_array( $v ) )
1151                                         $data[$k] = $this->escape( $v, 'recursive' );
1152                                 else
1153                                         $data[$k] = $this->_weak_escape( $v, 'internal' );
1154                         }
1155                 } else {
1156                         $data = $this->_weak_escape( $data, 'internal' );
1157                 }
1158
1159                 return $data;
1160         }
1161
1162         /**
1163          * Escapes content by reference for insertion into the database, for security
1164          *
1165          * @uses wpdb::_real_escape()
1166          * @since 2.3.0
1167          * @param string $string to escape
1168          * @return void
1169          */
1170         public function escape_by_ref( &$string ) {
1171                 if ( ! is_float( $string ) )
1172                         $string = $this->_real_escape( $string );
1173         }
1174
1175         /**
1176          * Prepares a SQL query for safe execution. Uses sprintf()-like syntax.
1177          *
1178          * The following directives can be used in the query format string:
1179          *   %d (integer)
1180          *   %f (float)
1181          *   %s (string)
1182          *   %% (literal percentage sign - no argument needed)
1183          *
1184          * All of %d, %f, and %s are to be left unquoted in the query string and they need an argument passed for them.
1185          * Literals (%) as parts of the query must be properly written as %%.
1186          *
1187          * This function only supports a small subset of the sprintf syntax; it only supports %d (integer), %f (float), and %s (string).
1188          * Does not support sign, padding, alignment, width or precision specifiers.
1189          * Does not support argument numbering/swapping.
1190          *
1191          * May be called like {@link http://php.net/sprintf sprintf()} or like {@link http://php.net/vsprintf vsprintf()}.
1192          *
1193          * Both %d and %s should be left unquoted in the query string.
1194          *
1195          *     wpdb::prepare( "SELECT * FROM `table` WHERE `column` = %s AND `field` = %d", 'foo', 1337 )
1196          *     wpdb::prepare( "SELECT DATE_FORMAT(`field`, '%%c') FROM `table` WHERE `column` = %s", 'foo' );
1197          *
1198          * @link http://php.net/sprintf Description of syntax.
1199          * @since 2.3.0
1200          *
1201          * @param string $query Query statement with sprintf()-like placeholders
1202          * @param array|mixed $args The array of variables to substitute into the query's placeholders if being called like
1203          *      {@link http://php.net/vsprintf vsprintf()}, or the first variable to substitute into the query's placeholders if
1204          *      being called like {@link http://php.net/sprintf sprintf()}.
1205          * @param mixed $args,... further variables to substitute into the query's placeholders if being called like
1206          *      {@link http://php.net/sprintf sprintf()}.
1207          * @return null|false|string Sanitized query string, null if there is no query, false if there is an error and string
1208          *      if there was something to prepare
1209          */
1210         public function prepare( $query, $args ) {
1211                 if ( is_null( $query ) )
1212                         return;
1213
1214                 // This is not meant to be foolproof -- but it will catch obviously incorrect usage.
1215                 if ( strpos( $query, '%' ) === false ) {
1216                         _doing_it_wrong( 'wpdb::prepare', sprintf( __( 'The query argument of %s must have a placeholder.' ), 'wpdb::prepare()' ), '3.9' );
1217                 }
1218
1219                 $args = func_get_args();
1220                 array_shift( $args );
1221                 // If args were passed as an array (as in vsprintf), move them up
1222                 if ( isset( $args[0] ) && is_array($args[0]) )
1223                         $args = $args[0];
1224                 $query = str_replace( "'%s'", '%s', $query ); // in case someone mistakenly already singlequoted it
1225                 $query = str_replace( '"%s"', '%s', $query ); // doublequote unquoting
1226                 $query = preg_replace( '|(?<!%)%f|' , '%F', $query ); // Force floats to be locale unaware
1227                 $query = preg_replace( '|(?<!%)%s|', "'%s'", $query ); // quote the strings, avoiding escaped strings like %%s
1228                 array_walk( $args, array( $this, 'escape_by_ref' ) );
1229                 return @vsprintf( $query, $args );
1230         }
1231
1232         /**
1233          * First half of escaping for LIKE special characters % and _ before preparing for MySQL.
1234          *
1235          * Use this only before wpdb::prepare() or esc_sql().  Reversing the order is very bad for security.
1236          *
1237          * Example Prepared Statement:
1238          *  $wild = '%';
1239          *  $find = 'only 43% of planets';
1240          *  $like = $wild . $wpdb->esc_like( $find ) . $wild;
1241          *  $sql  = $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE post_content LIKE %s", $like );
1242          *
1243          * Example Escape Chain:
1244          *  $sql  = esc_sql( $wpdb->esc_like( $input ) );
1245          *
1246          * @since 4.0.0
1247          * @access public
1248          *
1249          * @param string $text The raw text to be escaped. The input typed by the user should have no
1250          *                     extra or deleted slashes.
1251          * @return string Text in the form of a LIKE phrase. The output is not SQL safe. Call $wpdb::prepare()
1252          *                or real_escape next.
1253          */
1254         public function esc_like( $text ) {
1255                 return addcslashes( $text, '_%\\' );
1256         }
1257
1258         /**
1259          * Print SQL/DB error.
1260          *
1261          * @since 0.71
1262          * @global array $EZSQL_ERROR Stores error information of query and error string
1263          *
1264          * @param string $str The error to display
1265          * @return false|null False if the showing of errors is disabled.
1266          */
1267         public function print_error( $str = '' ) {
1268                 global $EZSQL_ERROR;
1269
1270                 if ( !$str ) {
1271                         if ( $this->use_mysqli ) {
1272                                 $str = mysqli_error( $this->dbh );
1273                         } else {
1274                                 $str = mysql_error( $this->dbh );
1275                         }
1276                 }
1277                 $EZSQL_ERROR[] = array( 'query' => $this->last_query, 'error_str' => $str );
1278
1279                 if ( $this->suppress_errors )
1280                         return false;
1281
1282                 wp_load_translations_early();
1283
1284                 if ( $caller = $this->get_caller() )
1285                         $error_str = sprintf( __( 'WordPress database error %1$s for query %2$s made by %3$s' ), $str, $this->last_query, $caller );
1286                 else
1287                         $error_str = sprintf( __( 'WordPress database error %1$s for query %2$s' ), $str, $this->last_query );
1288
1289                 error_log( $error_str );
1290
1291                 // Are we showing errors?
1292                 if ( ! $this->show_errors )
1293                         return false;
1294
1295                 // If there is an error then take note of it
1296                 if ( is_multisite() ) {
1297                         $msg = "WordPress database error: [$str]\n{$this->last_query}\n";
1298                         if ( defined( 'ERRORLOGFILE' ) )
1299                                 error_log( $msg, 3, ERRORLOGFILE );
1300                         if ( defined( 'DIEONDBERROR' ) )
1301                                 wp_die( $msg );
1302                 } else {
1303                         $str   = htmlspecialchars( $str, ENT_QUOTES );
1304                         $query = htmlspecialchars( $this->last_query, ENT_QUOTES );
1305
1306                         print "<div id='error'>
1307                         <p class='wpdberror'><strong>WordPress database error:</strong> [$str]<br />
1308                         <code>$query</code></p>
1309                         </div>";
1310                 }
1311         }
1312
1313         /**
1314          * Enables showing of database errors.
1315          *
1316          * This function should be used only to enable showing of errors.
1317          * wpdb::hide_errors() should be used instead for hiding of errors. However,
1318          * this function can be used to enable and disable showing of database
1319          * errors.
1320          *
1321          * @since 0.71
1322          * @see wpdb::hide_errors()
1323          *
1324          * @param bool $show Whether to show or hide errors
1325          * @return bool Old value for showing errors.
1326          */
1327         public function show_errors( $show = true ) {
1328                 $errors = $this->show_errors;
1329                 $this->show_errors = $show;
1330                 return $errors;
1331         }
1332
1333         /**
1334          * Disables showing of database errors.
1335          *
1336          * By default database errors are not shown.
1337          *
1338          * @since 0.71
1339          * @see wpdb::show_errors()
1340          *
1341          * @return bool Whether showing of errors was active
1342          */
1343         public function hide_errors() {
1344                 $show = $this->show_errors;
1345                 $this->show_errors = false;
1346                 return $show;
1347         }
1348
1349         /**
1350          * Whether to suppress database errors.
1351          *
1352          * By default database errors are suppressed, with a simple
1353          * call to this function they can be enabled.
1354          *
1355          * @since 2.5.0
1356          * @see wpdb::hide_errors()
1357          * @param bool $suppress Optional. New value. Defaults to true.
1358          * @return bool Old value
1359          */
1360         public function suppress_errors( $suppress = true ) {
1361                 $errors = $this->suppress_errors;
1362                 $this->suppress_errors = (bool) $suppress;
1363                 return $errors;
1364         }
1365
1366         /**
1367          * Kill cached query results.
1368          *
1369          * @since 0.71
1370          * @return void
1371          */
1372         public function flush() {
1373                 $this->last_result = array();
1374                 $this->col_info    = null;
1375                 $this->last_query  = null;
1376                 $this->rows_affected = $this->num_rows = 0;
1377                 $this->last_error  = '';
1378
1379                 if ( $this->use_mysqli && $this->result instanceof mysqli_result ) {
1380                         mysqli_free_result( $this->result );
1381                         $this->result = null;
1382
1383                         // Sanity check before using the handle
1384                         if ( empty( $this->dbh ) || !( $this->dbh instanceof mysqli ) ) {
1385                                 return;
1386                         }
1387
1388                         // Clear out any results from a multi-query
1389                         while ( mysqli_more_results( $this->dbh ) ) {
1390                                 mysqli_next_result( $this->dbh );
1391                         }
1392                 } elseif ( is_resource( $this->result ) ) {
1393                         mysql_free_result( $this->result );
1394                 }
1395         }
1396
1397         /**
1398          * Connect to and select database.
1399          *
1400          * If $allow_bail is false, the lack of database connection will need
1401          * to be handled manually.
1402          *
1403          * @since 3.0.0
1404          * @since 3.9.0 $allow_bail parameter added.
1405          *
1406          * @param bool $allow_bail Optional. Allows the function to bail. Default true.
1407          * @return null|bool True with a successful connection, false on failure.
1408          */
1409         public function db_connect( $allow_bail = true ) {
1410
1411                 $this->is_mysql = true;
1412
1413                 /*
1414                  * Deprecated in 3.9+ when using MySQLi. No equivalent
1415                  * $new_link parameter exists for mysqli_* functions.
1416                  */
1417                 $new_link = defined( 'MYSQL_NEW_LINK' ) ? MYSQL_NEW_LINK : true;
1418                 $client_flags = defined( 'MYSQL_CLIENT_FLAGS' ) ? MYSQL_CLIENT_FLAGS : 0;
1419
1420                 if ( $this->use_mysqli ) {
1421                         $this->dbh = mysqli_init();
1422
1423                         // mysqli_real_connect doesn't support the host param including a port or socket
1424                         // like mysql_connect does. This duplicates how mysql_connect detects a port and/or socket file.
1425                         $port = null;
1426                         $socket = null;
1427                         $host = $this->dbhost;
1428                         $port_or_socket = strstr( $host, ':' );
1429                         if ( ! empty( $port_or_socket ) ) {
1430                                 $host = substr( $host, 0, strpos( $host, ':' ) );
1431                                 $port_or_socket = substr( $port_or_socket, 1 );
1432                                 if ( 0 !== strpos( $port_or_socket, '/' ) ) {
1433                                         $port = intval( $port_or_socket );
1434                                         $maybe_socket = strstr( $port_or_socket, ':' );
1435                                         if ( ! empty( $maybe_socket ) ) {
1436                                                 $socket = substr( $maybe_socket, 1 );
1437                                         }
1438                                 } else {
1439                                         $socket = $port_or_socket;
1440                                 }
1441                         }
1442
1443                         if ( WP_DEBUG ) {
1444                                 mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags );
1445                         } else {
1446                                 @mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags );
1447                         }
1448
1449                         if ( $this->dbh->connect_errno ) {
1450                                 $this->dbh = null;
1451
1452                                 /* It's possible ext/mysqli is misconfigured. Fall back to ext/mysql if:
1453                                  *  - We haven't previously connected, and
1454                                  *  - WP_USE_EXT_MYSQL isn't set to false, and
1455                                  *  - ext/mysql is loaded.
1456                                  */
1457                                 $attempt_fallback = true;
1458
1459                                 if ( $this->has_connected ) {
1460                                         $attempt_fallback = false;
1461                                 } elseif ( defined( 'WP_USE_EXT_MYSQL' ) && ! WP_USE_EXT_MYSQL ) {
1462                                         $attempt_fallback = false;
1463                                 } elseif ( ! function_exists( 'mysql_connect' ) ) {
1464                                         $attempt_fallback = false;
1465                                 }
1466
1467                                 if ( $attempt_fallback ) {
1468                                         $this->use_mysqli = false;
1469                                         $this->db_connect();
1470                                 }
1471                         }
1472                 } else {
1473                         if ( WP_DEBUG ) {
1474                                 $this->dbh = mysql_connect( $this->dbhost, $this->dbuser, $this->dbpassword, $new_link, $client_flags );
1475                         } else {
1476                                 $this->dbh = @mysql_connect( $this->dbhost, $this->dbuser, $this->dbpassword, $new_link, $client_flags );
1477                         }
1478                 }
1479
1480                 if ( ! $this->dbh && $allow_bail ) {
1481                         wp_load_translations_early();
1482
1483                         // Load custom DB error template, if present.
1484                         if ( file_exists( WP_CONTENT_DIR . '/db-error.php' ) ) {
1485                                 require_once( WP_CONTENT_DIR . '/db-error.php' );
1486                                 die();
1487                         }
1488
1489                         $this->bail( sprintf( __( "
1490 <h1>Error establishing a database connection</h1>
1491 <p>This either means that the username and password information in your <code>wp-config.php</code> file is incorrect or we can't contact the database server at <code>%s</code>. This could mean your host's database server is down.</p>
1492 <ul>
1493         <li>Are you sure you have the correct username and password?</li>
1494         <li>Are you sure that you have typed the correct hostname?</li>
1495         <li>Are you sure that the database server is running?</li>
1496 </ul>
1497 <p>If you're unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href='https://wordpress.org/support/'>WordPress Support Forums</a>.</p>
1498 " ), htmlspecialchars( $this->dbhost, ENT_QUOTES ) ), 'db_connect_fail' );
1499
1500                         return false;
1501                 } elseif ( $this->dbh ) {
1502                         if ( ! $this->has_connected ) {
1503                                 $this->init_charset();
1504                         }
1505
1506                         $this->has_connected = true;
1507
1508                         $this->set_charset( $this->dbh );
1509
1510                         $this->ready = true;
1511                         $this->set_sql_mode();
1512                         $this->select( $this->dbname, $this->dbh );
1513
1514                         return true;
1515                 }
1516
1517                 return false;
1518         }
1519
1520         /**
1521          * Check that the connection to the database is still up. If not, try to reconnect.
1522          *
1523          * If this function is unable to reconnect, it will forcibly die, or if after the
1524          * the template_redirect hook has been fired, return false instead.
1525          *
1526          * If $allow_bail is false, the lack of database connection will need
1527          * to be handled manually.
1528          *
1529          * @since 3.9.0
1530          *
1531          * @param bool $allow_bail Optional. Allows the function to bail. Default true.
1532          * @return bool|null True if the connection is up.
1533          */
1534         public function check_connection( $allow_bail = true ) {
1535                 if ( $this->use_mysqli ) {
1536                         if ( @mysqli_ping( $this->dbh ) ) {
1537                                 return true;
1538                         }
1539                 } else {
1540                         if ( @mysql_ping( $this->dbh ) ) {
1541                                 return true;
1542                         }
1543                 }
1544
1545                 $error_reporting = false;
1546
1547                 // Disable warnings, as we don't want to see a multitude of "unable to connect" messages
1548                 if ( WP_DEBUG ) {
1549                         $error_reporting = error_reporting();
1550                         error_reporting( $error_reporting & ~E_WARNING );
1551                 }
1552
1553                 for ( $tries = 1; $tries <= $this->reconnect_retries; $tries++ ) {
1554                         // On the last try, re-enable warnings. We want to see a single instance of the
1555                         // "unable to connect" message on the bail() screen, if it appears.
1556                         if ( $this->reconnect_retries === $tries && WP_DEBUG ) {
1557                                 error_reporting( $error_reporting );
1558                         }
1559
1560                         if ( $this->db_connect( false ) ) {
1561                                 if ( $error_reporting ) {
1562                                         error_reporting( $error_reporting );
1563                                 }
1564
1565                                 return true;
1566                         }
1567
1568                         sleep( 1 );
1569                 }
1570
1571                 // If template_redirect has already happened, it's too late for wp_die()/dead_db().
1572                 // Let's just return and hope for the best.
1573                 if ( did_action( 'template_redirect' ) ) {
1574                         return false;
1575                 }
1576
1577                 if ( ! $allow_bail ) {
1578                         return false;
1579                 }
1580
1581                 // We weren't able to reconnect, so we better bail.
1582                 $this->bail( sprintf( ( "
1583 <h1>Error reconnecting to the database</h1>
1584 <p>This means that we lost contact with the database server at <code>%s</code>. This could mean your host's database server is down.</p>
1585 <ul>
1586         <li>Are you sure that the database server is running?</li>
1587         <li>Are you sure that the database server is not under particularly heavy load?</li>
1588 </ul>
1589 <p>If you're unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href='https://wordpress.org/support/'>WordPress Support Forums</a>.</p>
1590 " ), htmlspecialchars( $this->dbhost, ENT_QUOTES ) ), 'db_connect_fail' );
1591
1592                 // Call dead_db() if bail didn't die, because this database is no more. It has ceased to be (at least temporarily).
1593                 dead_db();
1594         }
1595
1596         /**
1597          * Perform a MySQL database query, using current database connection.
1598          *
1599          * More information can be found on the codex page.
1600          *
1601          * @since 0.71
1602          *
1603          * @param string $query Database query
1604          * @return int|false Number of rows affected/selected or false on error
1605          */
1606         public function query( $query ) {
1607                 if ( ! $this->ready ) {
1608                         $this->check_current_query = true;
1609                         return false;
1610                 }
1611
1612                 /**
1613                  * Filter the database query.
1614                  *
1615                  * Some queries are made before the plugins have been loaded,
1616                  * and thus cannot be filtered with this method.
1617                  *
1618                  * @since 2.1.0
1619                  *
1620                  * @param string $query Database query.
1621                  */
1622                 $query = apply_filters( 'query', $query );
1623
1624                 $this->flush();
1625
1626                 // Log how the function was called
1627                 $this->func_call = "\$db->query(\"$query\")";
1628
1629                 // If we're writing to the database, make sure the query will write safely.
1630                 if ( $this->check_current_query && ! $this->check_ascii( $query ) ) {
1631                         $stripped_query = $this->strip_invalid_text_from_query( $query );
1632                         // strip_invalid_text_from_query() can perform queries, so we need
1633                         // to flush again, just to make sure everything is clear.
1634                         $this->flush();
1635                         if ( $stripped_query !== $query ) {
1636                                 $this->insert_id = 0;
1637                                 return false;
1638                         }
1639                 }
1640
1641                 $this->check_current_query = true;
1642
1643                 // Keep track of the last query for debug..
1644                 $this->last_query = $query;
1645
1646                 $this->_do_query( $query );
1647
1648                 // MySQL server has gone away, try to reconnect
1649                 $mysql_errno = 0;
1650                 if ( ! empty( $this->dbh ) ) {
1651                         if ( $this->use_mysqli ) {
1652                                 $mysql_errno = mysqli_errno( $this->dbh );
1653                         } else {
1654                                 $mysql_errno = mysql_errno( $this->dbh );
1655                         }
1656                 }
1657
1658                 if ( empty( $this->dbh ) || 2006 == $mysql_errno ) {
1659                         if ( $this->check_connection() ) {
1660                                 $this->_do_query( $query );
1661                         } else {
1662                                 $this->insert_id = 0;
1663                                 return false;
1664                         }
1665                 }
1666
1667                 // If there is an error then take note of it..
1668                 if ( $this->use_mysqli ) {
1669                         $this->last_error = mysqli_error( $this->dbh );
1670                 } else {
1671                         $this->last_error = mysql_error( $this->dbh );
1672                 }
1673
1674                 if ( $this->last_error ) {
1675                         // Clear insert_id on a subsequent failed insert.
1676                         if ( $this->insert_id && preg_match( '/^\s*(insert|replace)\s/i', $query ) )
1677                                 $this->insert_id = 0;
1678
1679                         $this->print_error();
1680                         return false;
1681                 }
1682
1683                 if ( preg_match( '/^\s*(create|alter|truncate|drop)\s/i', $query ) ) {
1684                         $return_val = $this->result;
1685                 } elseif ( preg_match( '/^\s*(insert|delete|update|replace)\s/i', $query ) ) {
1686                         if ( $this->use_mysqli ) {
1687                                 $this->rows_affected = mysqli_affected_rows( $this->dbh );
1688                         } else {
1689                                 $this->rows_affected = mysql_affected_rows( $this->dbh );
1690                         }
1691                         // Take note of the insert_id
1692                         if ( preg_match( '/^\s*(insert|replace)\s/i', $query ) ) {
1693                                 if ( $this->use_mysqli ) {
1694                                         $this->insert_id = mysqli_insert_id( $this->dbh );
1695                                 } else {
1696                                         $this->insert_id = mysql_insert_id( $this->dbh );
1697                                 }
1698                         }
1699                         // Return number of rows affected
1700                         $return_val = $this->rows_affected;
1701                 } else {
1702                         $num_rows = 0;
1703                         if ( $this->use_mysqli && $this->result instanceof mysqli_result ) {
1704                                 while ( $row = @mysqli_fetch_object( $this->result ) ) {
1705                                         $this->last_result[$num_rows] = $row;
1706                                         $num_rows++;
1707                                 }
1708                         } elseif ( is_resource( $this->result ) ) {
1709                                 while ( $row = @mysql_fetch_object( $this->result ) ) {
1710                                         $this->last_result[$num_rows] = $row;
1711                                         $num_rows++;
1712                                 }
1713                         }
1714
1715                         // Log number of rows the query returned
1716                         // and return number of rows selected
1717                         $this->num_rows = $num_rows;
1718                         $return_val     = $num_rows;
1719                 }
1720
1721                 return $return_val;
1722         }
1723
1724         /**
1725          * Internal function to perform the mysql_query() call.
1726          *
1727          * @since 3.9.0
1728          *
1729          * @access private
1730          * @see wpdb::query()
1731          *
1732          * @param string $query The query to run.
1733          */
1734         private function _do_query( $query ) {
1735                 if ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ) {
1736                         $this->timer_start();
1737                 }
1738
1739                 if ( $this->use_mysqli ) {
1740                         $this->result = @mysqli_query( $this->dbh, $query );
1741                 } else {
1742                         $this->result = @mysql_query( $query, $this->dbh );
1743                 }
1744                 $this->num_queries++;
1745
1746                 if ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ) {
1747                         $this->queries[] = array( $query, $this->timer_stop(), $this->get_caller() );
1748                 }
1749         }
1750
1751         /**
1752          * Insert a row into a table.
1753          *
1754          *     wpdb::insert( 'table', array( 'column' => 'foo', 'field' => 'bar' ) )
1755          *     wpdb::insert( 'table', array( 'column' => 'foo', 'field' => 1337 ), array( '%s', '%d' ) )
1756          *
1757          * @since 2.5.0
1758          * @see wpdb::prepare()
1759          * @see wpdb::$field_types
1760          * @see wp_set_wpdb_vars()
1761          *
1762          * @param string $table table name
1763          * @param array $data Data to insert (in column => value pairs). Both $data columns and $data values should be "raw" (neither should be SQL escaped).
1764          * @param array|string $format Optional. An array of formats to be mapped to each of the value in $data. If string, that format will be used for all of the values in $data.
1765          *      A format is one of '%d', '%f', '%s' (integer, float, string). If omitted, all values in $data will be treated as strings unless otherwise specified in wpdb::$field_types.
1766          * @return int|false The number of rows inserted, or false on error.
1767          */
1768         public function insert( $table, $data, $format = null ) {
1769                 return $this->_insert_replace_helper( $table, $data, $format, 'INSERT' );
1770         }
1771
1772         /**
1773          * Replace a row into a table.
1774          *
1775          *     wpdb::replace( 'table', array( 'column' => 'foo', 'field' => 'bar' ) )
1776          *     wpdb::replace( 'table', array( 'column' => 'foo', 'field' => 1337 ), array( '%s', '%d' ) )
1777          *
1778          * @since 3.0.0
1779          * @see wpdb::prepare()
1780          * @see wpdb::$field_types
1781          * @see wp_set_wpdb_vars()
1782          *
1783          * @param string $table table name
1784          * @param array $data Data to insert (in column => value pairs). Both $data columns and $data values should be "raw" (neither should be SQL escaped).
1785          * @param array|string $format Optional. An array of formats to be mapped to each of the value in $data. If string, that format will be used for all of the values in $data.
1786          *      A format is one of '%d', '%f', '%s' (integer, float, string). If omitted, all values in $data will be treated as strings unless otherwise specified in wpdb::$field_types.
1787          * @return int|false The number of rows affected, or false on error.
1788          */
1789         public function replace( $table, $data, $format = null ) {
1790                 return $this->_insert_replace_helper( $table, $data, $format, 'REPLACE' );
1791         }
1792
1793         /**
1794          * Helper function for insert and replace.
1795          *
1796          * Runs an insert or replace query based on $type argument.
1797          *
1798          * @access private
1799          * @since 3.0.0
1800          * @see wpdb::prepare()
1801          * @see wpdb::$field_types
1802          * @see wp_set_wpdb_vars()
1803          *
1804          * @param string $table table name
1805          * @param array $data Data to insert (in column => value pairs). Both $data columns and $data values should be "raw" (neither should be SQL escaped).
1806          * @param array|string $format Optional. An array of formats to be mapped to each of the value in $data. If string, that format will be used for all of the values in $data.
1807          *      A format is one of '%d', '%f', '%s' (integer, float, string). If omitted, all values in $data will be treated as strings unless otherwise specified in wpdb::$field_types.
1808          * @param string $type Optional. What type of operation is this? INSERT or REPLACE. Defaults to INSERT.
1809          * @return int|false The number of rows affected, or false on error.
1810          */
1811         function _insert_replace_helper( $table, $data, $format = null, $type = 'INSERT' ) {
1812                 if ( ! in_array( strtoupper( $type ), array( 'REPLACE', 'INSERT' ) ) ) {
1813                         return false;
1814                 }
1815
1816                 $data = $this->process_fields( $table, $data, $format );
1817                 if ( false === $data ) {
1818                         return false;
1819                 }
1820
1821                 $formats = $values = array();
1822                 foreach ( $data as $value ) {
1823                         $formats[] = $value['format'];
1824                         $values[]  = $value['value'];
1825                 }
1826
1827                 $fields  = '`' . implode( '`, `', array_keys( $data ) ) . '`';
1828                 $formats = implode( ', ', $formats );
1829
1830                 $sql = "$type INTO `$table` ($fields) VALUES ($formats)";
1831
1832                 $this->insert_id = 0;
1833                 $this->check_current_query = false;
1834                 return $this->query( $this->prepare( $sql, $values ) );
1835         }
1836
1837         /**
1838          * Update a row in the table
1839          *
1840          *     wpdb::update( 'table', array( 'column' => 'foo', 'field' => 'bar' ), array( 'ID' => 1 ) )
1841          *     wpdb::update( 'table', array( 'column' => 'foo', 'field' => 1337 ), array( 'ID' => 1 ), array( '%s', '%d' ), array( '%d' ) )
1842          *
1843          * @since 2.5.0
1844          * @see wpdb::prepare()
1845          * @see wpdb::$field_types
1846          * @see wp_set_wpdb_vars()
1847          *
1848          * @param string $table table name
1849          * @param array $data Data to update (in column => value pairs). Both $data columns and $data values should be "raw" (neither should be SQL escaped).
1850          * @param array $where A named array of WHERE clauses (in column => value pairs). Multiple clauses will be joined with ANDs. Both $where columns and $where values should be "raw".
1851          * @param array|string $format Optional. An array of formats to be mapped to each of the values in $data. If string, that format will be used for all of the values in $data.
1852          *      A format is one of '%d', '%f', '%s' (integer, float, string). If omitted, all values in $data will be treated as strings unless otherwise specified in wpdb::$field_types.
1853          * @param array|string $where_format Optional. An array of formats to be mapped to each of the values in $where. If string, that format will be used for all of the items in $where. A format is one of '%d', '%f', '%s' (integer, float, string). If omitted, all values in $where will be treated as strings.
1854          * @return int|false The number of rows updated, or false on error.
1855          */
1856         public function update( $table, $data, $where, $format = null, $where_format = null ) {
1857                 if ( ! is_array( $data ) || ! is_array( $where ) ) {
1858                         return false;
1859                 }
1860
1861                 $data = $this->process_fields( $table, $data, $format );
1862                 if ( false === $data ) {
1863                         return false;
1864                 }
1865                 $where = $this->process_fields( $table, $where, $where_format );
1866                 if ( false === $where ) {
1867                         return false;
1868                 }
1869
1870                 $fields = $conditions = $values = array();
1871                 foreach ( $data as $field => $value ) {
1872                         $fields[] = "`$field` = " . $value['format'];
1873                         $values[] = $value['value'];
1874                 }
1875                 foreach ( $where as $field => $value ) {
1876                         $conditions[] = "`$field` = " . $value['format'];
1877                         $values[] = $value['value'];
1878                 }
1879
1880                 $fields = implode( ', ', $fields );
1881                 $conditions = implode( ' AND ', $conditions );
1882
1883                 $sql = "UPDATE `$table` SET $fields WHERE $conditions";
1884
1885                 $this->check_current_query = false;
1886                 return $this->query( $this->prepare( $sql, $values ) );
1887         }
1888
1889         /**
1890          * Delete a row in the table
1891          *
1892          *     wpdb::delete( 'table', array( 'ID' => 1 ) )
1893          *     wpdb::delete( 'table', array( 'ID' => 1 ), array( '%d' ) )
1894          *
1895          * @since 3.4.0
1896          * @see wpdb::prepare()
1897          * @see wpdb::$field_types
1898          * @see wp_set_wpdb_vars()
1899          *
1900          * @param string $table table name
1901          * @param array $where A named array of WHERE clauses (in column => value pairs). Multiple clauses will be joined with ANDs. Both $where columns and $where values should be "raw".
1902          * @param array|string $where_format Optional. An array of formats to be mapped to each of the values in $where. If string, that format will be used for all of the items in $where. A format is one of '%d', '%f', '%s' (integer, float, string). If omitted, all values in $where will be treated as strings unless otherwise specified in wpdb::$field_types.
1903          * @return int|false The number of rows updated, or false on error.
1904          */
1905         public function delete( $table, $where, $where_format = null ) {
1906                 if ( ! is_array( $where ) ) {
1907                         return false;
1908                 }
1909
1910                 $where = $this->process_fields( $table, $where, $where_format );
1911                 if ( false === $where ) {
1912                         return false;
1913                 }
1914
1915                 $conditions = $values = array();
1916                 foreach ( $where as $field => $value ) {
1917                         $conditions[] = "`$field` = " . $value['format'];
1918                         $values[] = $value['value'];
1919                 }
1920
1921                 $conditions = implode( ' AND ', $conditions );
1922
1923                 $sql = "DELETE FROM `$table` WHERE $conditions";
1924
1925                 $this->check_current_query = false;
1926                 return $this->query( $this->prepare( $sql, $values ) );
1927         }
1928
1929         /**
1930          * Processes arrays of field/value pairs and field formats.
1931          *
1932          * This is a helper method for wpdb's CRUD methods, which take field/value
1933          * pairs for inserts, updates, and where clauses. This method first pairs
1934          * each value with a format. Then it determines the charset of that field,
1935          * using that to determine if any invalid text would be stripped. If text is
1936          * stripped, then field processing is rejected and the query fails.
1937          *
1938          * @since 4.2.0
1939          * @access protected
1940          *
1941          * @param string $table  Table name.
1942          * @param array  $data   Field/value pair.
1943          * @param mixed  $format Format for each field.
1944          * @return array|bool Returns an array of fields that contain paired values
1945          *                    and formats. Returns false for invalid values.
1946          */
1947         protected function process_fields( $table, $data, $format ) {
1948                 $data = $this->process_field_formats( $data, $format );
1949                 if ( false === $data ) {
1950                         return false;
1951                 }
1952
1953                 $data = $this->process_field_charsets( $data, $table );
1954                 if ( false === $data ) {
1955                         return false;
1956                 }
1957
1958                 $data = $this->process_field_lengths( $data, $table );
1959                 if ( false === $data ) {
1960                         return false;
1961                 }
1962
1963                 $converted_data = $this->strip_invalid_text( $data );
1964
1965                 if ( $data !== $converted_data ) {
1966                         return false;
1967                 }
1968
1969                 return $data;
1970         }
1971
1972         /**
1973          * Prepares arrays of value/format pairs as passed to wpdb CRUD methods.
1974          *
1975          * @since 4.2.0
1976          * @access protected
1977          *
1978          * @param array $data   Array of fields to values.
1979          * @param mixed $format Formats to be mapped to the values in $data.
1980          * @return array Array, keyed by field names with values being an array
1981          *               of 'value' and 'format' keys.
1982          */
1983         protected function process_field_formats( $data, $format ) {
1984                 $formats = $original_formats = (array) $format;
1985
1986                 foreach ( $data as $field => $value ) {
1987                         $value = array(
1988                                 'value'  => $value,
1989                                 'format' => '%s',
1990                         );
1991
1992                         if ( ! empty( $format ) ) {
1993                                 $value['format'] = array_shift( $formats );
1994                                 if ( ! $value['format'] ) {
1995                                         $value['format'] = reset( $original_formats );
1996                                 }
1997                         } elseif ( isset( $this->field_types[ $field ] ) ) {
1998                                 $value['format'] = $this->field_types[ $field ];
1999                         }
2000
2001                         $data[ $field ] = $value;
2002                 }
2003
2004                 return $data;
2005         }
2006
2007         /**
2008          * Adds field charsets to field/value/format arrays generated by
2009          * the wpdb::process_field_formats() method.
2010          *
2011          * @since 4.2.0
2012          * @access protected
2013          *
2014          * @param array  $data  As it comes from the wpdb::process_field_formats() method.
2015          * @param string $table Table name.
2016          * @return The same array as $data with additional 'charset' keys.
2017          */
2018         protected function process_field_charsets( $data, $table ) {
2019                 foreach ( $data as $field => $value ) {
2020                         if ( '%d' === $value['format'] || '%f' === $value['format'] ) {
2021                                 // We can skip this field if we know it isn't a string.
2022                                 // This checks %d/%f versus ! %s because it's sprintf() could take more.
2023                                 $value['charset'] = false;
2024                         } elseif ( $this->check_ascii( $value['value'] ) ) {
2025                                 // If it's ASCII, then we don't need the charset. We can skip this field.
2026                                 $value['charset'] = false;
2027                         } else {
2028                                 $value['charset'] = $this->get_col_charset( $table, $field );
2029                                 if ( is_wp_error( $value['charset'] ) ) {
2030                                         return false;
2031                                 }
2032
2033                                 // This isn't ASCII. Don't have strip_invalid_text() re-check.
2034                                 $value['ascii'] = false;
2035                         }
2036
2037                         $data[ $field ] = $value;
2038                 }
2039
2040                 return $data;
2041         }
2042
2043         /**
2044          * For string fields, record the maximum string length that field can safely save.
2045          *
2046          * @since 4.2.1
2047          * @access protected
2048          *
2049          * @param array  $data  As it comes from the wpdb::process_field_charsets() method.
2050          * @param string $table Table name.
2051          * @return array|False The same array as $data with additional 'length' keys, or false if
2052          *                     any of the values were too long for their corresponding field.
2053          */
2054         protected function process_field_lengths( $data, $table ) {
2055                 foreach ( $data as $field => $value ) {
2056                         if ( '%d' === $value['format'] || '%f' === $value['format'] ) {
2057                                 // We can skip this field if we know it isn't a string.
2058                                 // This checks %d/%f versus ! %s because it's sprintf() could take more.
2059                                 $value['length'] = false;
2060                         } else {
2061                                 $value['length'] = $this->get_col_length( $table, $field );
2062                                 if ( is_wp_error( $value['length'] ) ) {
2063                                         return false;
2064                                 }
2065                         }
2066
2067                         if ( false !== $value['length'] && mb_strlen( $value['value'] ) > $value['length'] ) {
2068                                 return false;
2069                         }
2070
2071                         $data[ $field ] = $value;
2072                 }
2073
2074                 return $data;
2075         }
2076
2077         /**
2078          * Retrieve one variable from the database.
2079          *
2080          * Executes a SQL query and returns the value from the SQL result.
2081          * If the SQL result contains more than one column and/or more than one row, this function returns the value in the column and row specified.
2082          * If $query is null, this function returns the value in the specified column and row from the previous SQL result.
2083          *
2084          * @since 0.71
2085          *
2086          * @param string|null $query Optional. SQL query. Defaults to null, use the result from the previous query.
2087          * @param int $x Optional. Column of value to return. Indexed from 0.
2088          * @param int $y Optional. Row of value to return. Indexed from 0.
2089          * @return string|null Database query result (as string), or null on failure
2090          */
2091         public function get_var( $query = null, $x = 0, $y = 0 ) {
2092                 $this->func_call = "\$db->get_var(\"$query\", $x, $y)";
2093
2094                 if ( $this->check_safe_collation( $query ) ) {
2095                         $this->check_current_query = false;
2096                 }
2097
2098                 if ( $query ) {
2099                         $this->query( $query );
2100                 }
2101
2102                 // Extract var out of cached results based x,y vals
2103                 if ( !empty( $this->last_result[$y] ) ) {
2104                         $values = array_values( get_object_vars( $this->last_result[$y] ) );
2105                 }
2106
2107                 // If there is a value return it else return null
2108                 return ( isset( $values[$x] ) && $values[$x] !== '' ) ? $values[$x] : null;
2109         }
2110
2111         /**
2112          * Retrieve one row from the database.
2113          *
2114          * Executes a SQL query and returns the row from the SQL result.
2115          *
2116          * @since 0.71
2117          *
2118          * @param string|null $query SQL query.
2119          * @param string $output Optional. one of ARRAY_A | ARRAY_N | OBJECT constants. Return an associative array (column => value, ...),
2120          *      a numerically indexed array (0 => value, ...) or an object ( ->column = value ), respectively.
2121          * @param int $y Optional. Row to return. Indexed from 0.
2122          * @return mixed Database query result in format specified by $output or null on failure
2123          */
2124         public function get_row( $query = null, $output = OBJECT, $y = 0 ) {
2125                 $this->func_call = "\$db->get_row(\"$query\",$output,$y)";
2126
2127                 if ( $this->check_safe_collation( $query ) ) {
2128                         $this->check_current_query = false;
2129                 }
2130
2131                 if ( $query ) {
2132                         $this->query( $query );
2133                 } else {
2134                         return null;
2135                 }
2136
2137                 if ( !isset( $this->last_result[$y] ) )
2138                         return null;
2139
2140                 if ( $output == OBJECT ) {
2141                         return $this->last_result[$y] ? $this->last_result[$y] : null;
2142                 } elseif ( $output == ARRAY_A ) {
2143                         return $this->last_result[$y] ? get_object_vars( $this->last_result[$y] ) : null;
2144                 } elseif ( $output == ARRAY_N ) {
2145                         return $this->last_result[$y] ? array_values( get_object_vars( $this->last_result[$y] ) ) : null;
2146                 } elseif ( strtoupper( $output ) === OBJECT ) {
2147                         // Back compat for OBJECT being previously case insensitive.
2148                         return $this->last_result[$y] ? $this->last_result[$y] : null;
2149                 } else {
2150                         $this->print_error( " \$db->get_row(string query, output type, int offset) -- Output type must be one of: OBJECT, ARRAY_A, ARRAY_N" );
2151                 }
2152         }
2153
2154         /**
2155          * Retrieve one column from the database.
2156          *
2157          * Executes a SQL query and returns the column from the SQL result.
2158          * If the SQL result contains more than one column, this function returns the column specified.
2159          * If $query is null, this function returns the specified column from the previous SQL result.
2160          *
2161          * @since 0.71
2162          *
2163          * @param string|null $query Optional. SQL query. Defaults to previous query.
2164          * @param int $x Optional. Column to return. Indexed from 0.
2165          * @return array Database query result. Array indexed from 0 by SQL result row number.
2166          */
2167         public function get_col( $query = null , $x = 0 ) {
2168                 if ( $this->check_safe_collation( $query ) ) {
2169                         $this->check_current_query = false;
2170                 }
2171
2172                 if ( $query ) {
2173                         $this->query( $query );
2174                 }
2175
2176                 $new_array = array();
2177                 // Extract the column values
2178                 for ( $i = 0, $j = count( $this->last_result ); $i < $j; $i++ ) {
2179                         $new_array[$i] = $this->get_var( null, $x, $i );
2180                 }
2181                 return $new_array;
2182         }
2183
2184         /**
2185          * Retrieve an entire SQL result set from the database (i.e., many rows)
2186          *
2187          * Executes a SQL query and returns the entire SQL result.
2188          *
2189          * @since 0.71
2190          *
2191          * @param string $query SQL query.
2192          * @param string $output Optional. Any of ARRAY_A | ARRAY_N | OBJECT | OBJECT_K constants. With one of the first three, return an array of rows indexed from 0 by SQL result row number.
2193          *      Each row is an associative array (column => value, ...), a numerically indexed array (0 => value, ...), or an object. ( ->column = value ), respectively.
2194          *      With OBJECT_K, return an associative array of row objects keyed by the value of each row's first column's value. Duplicate keys are discarded.
2195          * @return mixed Database query results
2196          */
2197         public function get_results( $query = null, $output = OBJECT ) {
2198                 $this->func_call = "\$db->get_results(\"$query\", $output)";
2199
2200                 if ( $this->check_safe_collation( $query ) ) {
2201                         $this->check_current_query = false;
2202                 }
2203
2204                 if ( $query ) {
2205                         $this->query( $query );
2206                 } else {
2207                         return null;
2208                 }
2209
2210                 $new_array = array();
2211                 if ( $output == OBJECT ) {
2212                         // Return an integer-keyed array of row objects
2213                         return $this->last_result;
2214                 } elseif ( $output == OBJECT_K ) {
2215                         // Return an array of row objects with keys from column 1
2216                         // (Duplicates are discarded)
2217                         foreach ( $this->last_result as $row ) {
2218                                 $var_by_ref = get_object_vars( $row );
2219                                 $key = array_shift( $var_by_ref );
2220                                 if ( ! isset( $new_array[ $key ] ) )
2221                                         $new_array[ $key ] = $row;
2222                         }
2223                         return $new_array;
2224                 } elseif ( $output == ARRAY_A || $output == ARRAY_N ) {
2225                         // Return an integer-keyed array of...
2226                         if ( $this->last_result ) {
2227                                 foreach( (array) $this->last_result as $row ) {
2228                                         if ( $output == ARRAY_N ) {
2229                                                 // ...integer-keyed row arrays
2230                                                 $new_array[] = array_values( get_object_vars( $row ) );
2231                                         } else {
2232                                                 // ...column name-keyed row arrays
2233                                                 $new_array[] = get_object_vars( $row );
2234                                         }
2235                                 }
2236                         }
2237                         return $new_array;
2238                 } elseif ( strtoupper( $output ) === OBJECT ) {
2239                         // Back compat for OBJECT being previously case insensitive.
2240                         return $this->last_result;
2241                 }
2242                 return null;
2243         }
2244
2245         /**
2246          * Retrieves the character set for the given table.
2247          *
2248          * @since 4.2.0
2249          * @access protected
2250          *
2251          * @param string $table Table name.
2252          * @return string|WP_Error Table character set, WP_Error object if it couldn't be found.
2253          */
2254         protected function get_table_charset( $table ) {
2255                 $tablekey = strtolower( $table );
2256
2257                 /**
2258                  * Filter the table charset value before the DB is checked.
2259                  *
2260                  * Passing a non-null value to the filter will effectively short-circuit
2261                  * checking the DB for the charset, returning that value instead.
2262                  *
2263                  * @since 4.2.0
2264                  *
2265                  * @param string $charset The character set to use. Default null.
2266                  * @param string $table   The name of the table being checked.
2267                  */
2268                 $charset = apply_filters( 'pre_get_table_charset', null, $table );
2269                 if ( null !== $charset ) {
2270                         return $charset;
2271                 }
2272
2273                 if ( isset( $this->table_charset[ $tablekey ] ) ) {
2274                         return $this->table_charset[ $tablekey ];
2275                 }
2276
2277                 $charsets = $columns = array();
2278                 $results = $this->get_results( "SHOW FULL COLUMNS FROM `$table`" );
2279                 if ( ! $results ) {
2280                         return new WP_Error( 'wpdb_get_table_charset_failure' );
2281                 }
2282
2283                 foreach ( $results as $column ) {
2284                         $columns[ strtolower( $column->Field ) ] = $column;
2285                 }
2286
2287                 $this->col_meta[ $tablekey ] = $columns;
2288
2289                 foreach ( $columns as $column ) {
2290                         if ( ! empty( $column->Collation ) ) {
2291                                 list( $charset ) = explode( '_', $column->Collation );
2292
2293                                 // If the current connection can't support utf8mb4 characters, let's only send 3-byte utf8 characters.
2294                                 if ( 'utf8mb4' === $charset && ! $this->has_cap( 'utf8mb4' ) ) {
2295                                         $charset = 'utf8';
2296                                 }
2297
2298                                 $charsets[ strtolower( $charset ) ] = true;
2299                         }
2300
2301                         list( $type ) = explode( '(', $column->Type );
2302
2303                         // A binary/blob means the whole query gets treated like this.
2304                         if ( in_array( strtoupper( $type ), array( 'BINARY', 'VARBINARY', 'TINYBLOB', 'MEDIUMBLOB', 'BLOB', 'LONGBLOB' ) ) ) {
2305                                 $this->table_charset[ $tablekey ] = 'binary';
2306                                 return 'binary';
2307                         }
2308                 }
2309
2310                 // utf8mb3 is an alias for utf8.
2311                 if ( isset( $charsets['utf8mb3'] ) ) {
2312                         $charsets['utf8'] = true;
2313                         unset( $charsets['utf8mb3'] );
2314                 }
2315
2316                 // Check if we have more than one charset in play.
2317                 $count = count( $charsets );
2318                 if ( 1 === $count ) {
2319                         $charset = key( $charsets );
2320                 } elseif ( 0 === $count ) {
2321                         // No charsets, assume this table can store whatever.
2322                         $charset = false;
2323                 } else {
2324                         // More than one charset. Remove latin1 if present and recalculate.
2325                         unset( $charsets['latin1'] );
2326                         $count = count( $charsets );
2327                         if ( 1 === $count ) {
2328                                 // Only one charset (besides latin1).
2329                                 $charset = key( $charsets );
2330                         } elseif ( 2 === $count && isset( $charsets['utf8'], $charsets['utf8mb4'] ) ) {
2331                                 // Two charsets, but they're utf8 and utf8mb4, use utf8.
2332                                 $charset = 'utf8';
2333                         } else {
2334                                 // Two mixed character sets. ascii.
2335                                 $charset = 'ascii';
2336                         }
2337                 }
2338
2339                 $this->table_charset[ $tablekey ] = $charset;
2340                 return $charset;
2341         }
2342
2343         /**
2344          * Retrieves the character set for the given column.
2345          *
2346          * @since 4.2.0
2347          * @access public
2348          *
2349          * @param string $table  Table name.
2350          * @param string $column Column name.
2351          * @return mixed Column character set as a string. False if the column has no
2352          *               character set. WP_Error object if there was an error.
2353          */
2354         public function get_col_charset( $table, $column ) {
2355                 $tablekey = strtolower( $table );
2356                 $columnkey = strtolower( $column );
2357
2358                 /**
2359                  * Filter the column charset value before the DB is checked.
2360                  *
2361                  * Passing a non-null value to the filter will short-circuit
2362                  * checking the DB for the charset, returning that value instead.
2363                  *
2364                  * @since 4.2.0
2365                  *
2366                  * @param string $charset The character set to use. Default null.
2367                  * @param string $table   The name of the table being checked.
2368                  * @param string $column  The name of the column being checked.
2369                  */
2370                 $charset = apply_filters( 'pre_get_col_charset', null, $table, $column );
2371                 if ( null !== $charset ) {
2372                         return $charset;
2373                 }
2374
2375                 // Skip this entirely if this isn't a MySQL database.
2376                 if ( false === $this->is_mysql ) {
2377                         return false;
2378                 }
2379
2380                 if ( empty( $this->table_charset[ $tablekey ] ) ) {
2381                         // This primes column information for us.
2382                         $table_charset = $this->get_table_charset( $table );
2383                         if ( is_wp_error( $table_charset ) ) {
2384                                 return $table_charset;
2385                         }
2386                 }
2387
2388                 // If still no column information, return the table charset.
2389                 if ( empty( $this->col_meta[ $tablekey ] ) ) {
2390                         return $this->table_charset[ $tablekey ];
2391                 }
2392
2393                 // If this column doesn't exist, return the table charset.
2394                 if ( empty( $this->col_meta[ $tablekey ][ $columnkey ] ) ) {
2395                         return $this->table_charset[ $tablekey ];
2396                 }
2397
2398                 // Return false when it's not a string column.
2399                 if ( empty( $this->col_meta[ $tablekey ][ $columnkey ]->Collation ) ) {
2400                         return false;
2401                 }
2402
2403                 list( $charset ) = explode( '_', $this->col_meta[ $tablekey ][ $columnkey ]->Collation );
2404                 return $charset;
2405         }
2406
2407         /**
2408          * Retrieve the maximum string length allowed in a given column.
2409          *
2410          * @since 4.2.1
2411          * @access public
2412          *
2413          * @param string $table  Table name.
2414          * @param string $column Column name.
2415          * @return mixed Max column length as an int. False if the column has no
2416          *               length. WP_Error object if there was an error.
2417          */
2418         public function get_col_length( $table, $column ) {
2419                 $tablekey = strtolower( $table );
2420                 $columnkey = strtolower( $column );
2421
2422                 // Skip this entirely if this isn't a MySQL database.
2423                 if ( false === $this->is_mysql ) {
2424                         return false;
2425                 }
2426
2427                 if ( empty( $this->col_meta[ $tablekey ] ) ) {
2428                         // This primes column information for us.
2429                         $table_charset = $this->get_table_charset( $table );
2430                         if ( is_wp_error( $table_charset ) ) {
2431                                 return $table_charset;
2432                         }
2433                 }
2434
2435                 if ( empty( $this->col_meta[ $tablekey ][ $columnkey ] ) ) {
2436                         return false;
2437                 }
2438
2439                 $typeinfo = explode( '(', $this->col_meta[ $tablekey ][ $columnkey ]->Type );
2440
2441                 $type = strtolower( $typeinfo[0] );
2442                 if ( ! empty( $typeinfo[1] ) ) {
2443                         $length = trim( $typeinfo[1], ')' );
2444                 } else {
2445                         $length = false;
2446                 }
2447
2448                 switch( $type ) {
2449                         case 'binary':
2450                         case 'char':
2451                         case 'varbinary':
2452                         case 'varchar':
2453                                 return $length;
2454                                 break;
2455                         case 'tinyblob':
2456                         case 'tinytext':
2457                                 return 255; // 2^8 - 1
2458                                 break;
2459                         case 'blob':
2460                         case 'text':
2461                                 return 65535; // 2^16 - 1
2462                                 break;
2463                         case 'mediumblob':
2464                         case 'mediumtext':
2465                                 return 16777215; // 2^24 - 1
2466                                 break;
2467                         case 'longblob':
2468                         case 'longtext':
2469                                 return 4294967295; // 2^32 - 1
2470                                 break;
2471                         default:
2472                                 return false;
2473                 }
2474
2475                 return false;
2476         }
2477
2478         /**
2479          * Check if a string is ASCII.
2480          *
2481          * The negative regex is faster for non-ASCII strings, as it allows
2482          * the search to finish as soon as it encounters a non-ASCII character.
2483          *
2484          * @since 4.2.0
2485          * @access protected
2486          *
2487          * @param string $string String to check.
2488          * @return bool True if ASCII, false if not.
2489          */
2490         protected function check_ascii( $string ) {
2491                 if ( function_exists( 'mb_check_encoding' ) ) {
2492                         if ( mb_check_encoding( $string, 'ASCII' ) ) {
2493                                 return true;
2494                         }
2495                 } elseif ( ! preg_match( '/[^\x00-\x7F]/', $string ) ) {
2496                         return true;
2497                 }
2498
2499                 return false;
2500         }
2501
2502         /**
2503          * Check if the query is accessing a collation considered safe on the current version of MySQL.
2504          *
2505          * @since 4.2.0
2506          * @access protected
2507          *
2508          * @param string $query The query to check.
2509          * @return bool True if the collation is safe, false if it isn't.
2510          */
2511         protected function check_safe_collation( $query ) {
2512                 if ( $this->checking_collation ) {
2513                         return true;
2514                 }
2515
2516                 // We don't need to check the collation for queries that don't read data.
2517                 $query = ltrim( $query, "\r\n\t (" );
2518                 if ( preg_match( '/^(?:SHOW|DESCRIBE|DESC|EXPLAIN)\s/i', $query ) ) {
2519                         return true;
2520                 }
2521
2522                 // All-ASCII queries don't need extra checking.
2523                 if ( $this->check_ascii( $query ) ) {
2524                         return true;
2525                 }
2526
2527                 $table = $this->get_table_from_query( $query );
2528                 if ( ! $table ) {
2529                         return false;
2530                 }
2531
2532                 $this->checking_collation = true;
2533                 $collation = $this->get_table_charset( $table );
2534                 $this->checking_collation = false;
2535
2536                 // Tables with no collation, or latin1 only, don't need extra checking.
2537                 if ( false === $collation || 'latin1' === $collation ) {
2538                         return true;
2539                 }
2540
2541                 $table = strtolower( $table );
2542                 if ( empty( $this->col_meta[ $table ] ) ) {
2543                         return false;
2544                 }
2545
2546                 // If any of the columns don't have one of these collations, it needs more sanity checking.
2547                 foreach( $this->col_meta[ $table ] as $col ) {
2548                         if ( empty( $col->Collation ) ) {
2549                                 continue;
2550                         }
2551
2552                         if ( ! in_array( $col->Collation, array( 'utf8_general_ci', 'utf8_bin', 'utf8mb4_general_ci', 'utf8mb4_bin' ), true ) ) {
2553                                 return false;
2554                         }
2555                 }
2556
2557                 return true;
2558         }
2559
2560         /**
2561          * Strips any invalid characters based on value/charset pairs.
2562          *
2563          * @since 4.2.0
2564          * @access protected
2565          *
2566          * @param array $data Array of value arrays. Each value array has the keys
2567          *                    'value' and 'charset'. An optional 'ascii' key can be
2568          *                    set to false to avoid redundant ASCII checks.
2569          * @return array|WP_Error The $data parameter, with invalid characters removed from
2570          *                        each value. This works as a passthrough: any additional keys
2571          *                        such as 'field' are retained in each value array. If we cannot
2572          *                        remove invalid characters, a WP_Error object is returned.
2573          */
2574         protected function strip_invalid_text( $data ) {
2575                 // Some multibyte character sets that we can check in PHP.
2576                 $mb_charsets = array(
2577                         'ascii'   => 'ASCII',
2578                         'big5'    => 'BIG-5',
2579                         'eucjpms' => 'eucJP-win',
2580                         'gb2312'  => 'EUC-CN',
2581                         'ujis'    => 'EUC-JP',
2582                         'utf32'   => 'UTF-32',
2583                 );
2584
2585                 $supported_charsets = array();
2586                 if ( function_exists( 'mb_list_encodings' ) ) {
2587                         $supported_charsets = mb_list_encodings();
2588                 }
2589
2590                 $db_check_string = false;
2591
2592                 foreach ( $data as &$value ) {
2593                         $charset = $value['charset'];
2594
2595                         // Column isn't a string, or is latin1, which will will happily store anything.
2596                         if ( false === $charset || 'latin1' === $charset ) {
2597                                 continue;
2598                         }
2599
2600                         if ( ! is_string( $value['value'] ) ) {
2601                                 continue;
2602                         }
2603
2604                         // ASCII is always OK.
2605                         if ( ! isset( $value['ascii'] ) && $this->check_ascii( $value['value'] ) ) {
2606                                 continue;
2607                         }
2608
2609                         // Convert the text locally.
2610                         if ( $supported_charsets ) {
2611                                 if ( isset( $mb_charsets[ $charset ] ) && in_array( $mb_charsets[ $charset ], $supported_charsets ) ) {
2612                                         $value['value'] = mb_convert_encoding( $value['value'], $mb_charsets[ $charset ], $mb_charsets[ $charset ] );
2613                                         continue;
2614                                 }
2615                         }
2616
2617                         // utf8 can be handled by regex, which is a bunch faster than a DB lookup.
2618                         if ( 'utf8' === $charset || 'utf8mb3' === $charset || 'utf8mb4' === $charset ) {
2619                                 $regex = '/
2620                                         (
2621                                                 (?: [\x00-\x7F]                  # single-byte sequences   0xxxxxxx
2622                                                 |   [\xC2-\xDF][\x80-\xBF]       # double-byte sequences   110xxxxx 10xxxxxx
2623                                                 |   \xE0[\xA0-\xBF][\x80-\xBF]   # triple-byte sequences   1110xxxx 10xxxxxx * 2
2624                                                 |   [\xE1-\xEC][\x80-\xBF]{2}
2625                                                 |   \xED[\x80-\x9F][\x80-\xBF]
2626                                                 |   [\xEE-\xEF][\x80-\xBF]{2}';
2627
2628                                 if ( 'utf8mb4' === $charset) {
2629                                         $regex .= '
2630                                                 |    \xF0[\x90-\xBF][\x80-\xBF]{2} # four-byte sequences   11110xxx 10xxxxxx * 3
2631                                                 |    [\xF1-\xF3][\x80-\xBF]{3}
2632                                                 |    \xF4[\x80-\x8F][\x80-\xBF]{2}
2633                                         ';
2634                                 }
2635
2636                                 $regex .= '){1,50}                          # ...one or more times
2637                                         )
2638                                         | .                                  # anything else
2639                                         /x';
2640                                 $value['value'] = preg_replace( $regex, '$1', $value['value'] );
2641                                 continue;
2642                         }
2643
2644                         // We couldn't use any local conversions, send it to the DB.
2645                         $value['db'] = $db_check_string = true;
2646                 }
2647                 unset( $value ); // Remove by reference.
2648
2649                 if ( $db_check_string ) {
2650                         $queries = array();
2651                         foreach ( $data as $col => $value ) {
2652                                 if ( ! empty( $value['db'] ) ) {
2653                                         if ( ! isset( $queries[ $value['charset'] ] ) ) {
2654                                                 $queries[ $value['charset'] ] = array();
2655                                         }
2656
2657                                         // Split the CONVERT() calls by charset, so we can make sure the connection is right
2658                                         $queries[ $value['charset'] ][ $col ] = $this->prepare( "CONVERT( %s USING {$value['charset']} )", $value['value'] );
2659                                         unset( $data[ $col ]['db'] );
2660                                 }
2661                         }
2662
2663                         $connection_charset = $this->charset;
2664                         foreach ( $queries as $charset => $query ) {
2665                                 if ( ! $query ) {
2666                                         continue;
2667                                 }
2668
2669                                 // Change the charset to match the string(s) we're converting
2670                                 if ( $charset !== $connection_charset ) {
2671                                         $connection_charset = $charset;
2672                                         $this->set_charset( $this->dbh, $charset );
2673                                 }
2674
2675                                 $this->check_current_query = false;
2676
2677                                 $row = $this->get_row( "SELECT " . implode( ', ', $query ), ARRAY_N );
2678                                 if ( ! $row ) {
2679                                         $this->set_charset( $this->dbh, $connection_charset );
2680                                         return new WP_Error( 'wpdb_strip_invalid_text_failure' );
2681                                 }
2682
2683                                 $cols = array_keys( $query );
2684                                 $col_count = count( $cols );
2685                                 for ( $ii = 0; $ii < $col_count; $ii++ ) {
2686                                         $data[ $cols[ $ii ] ]['value'] = $row[ $ii ];
2687                                 }
2688                         }
2689
2690                         // Don't forget to change the charset back!
2691                         if ( $connection_charset !== $this->charset ) {
2692                                 $this->set_charset( $this->dbh );
2693                         }
2694                 }
2695
2696                 return $data;
2697         }
2698
2699         /**
2700          * Strips any invalid characters from the query.
2701          *
2702          * @since 4.2.0
2703          * @access protected
2704          *
2705          * @param string $query Query to convert.
2706          * @return string|WP_Error The converted query, or a WP_Error object if the conversion fails.
2707          */
2708         protected function strip_invalid_text_from_query( $query ) {
2709                 $table = $this->get_table_from_query( $query );
2710                 if ( $table ) {
2711                         $charset = $this->get_table_charset( $table );
2712                         if ( is_wp_error( $charset ) ) {
2713                                 return $charset;
2714                         }
2715
2716                         // We can't reliably strip text from tables containing binary/blob columns
2717                         if ( 'binary' === $charset ) {
2718                                 return $query;
2719                         }
2720                 } else {
2721                         $charset = $this->charset;
2722                 }
2723
2724                 $data = array(
2725                         'value'   => $query,
2726                         'charset' => $charset,
2727                         'ascii'   => false,
2728                 );
2729
2730                 $data = $this->strip_invalid_text( array( $data ) );
2731                 if ( is_wp_error( $data ) ) {
2732                         return $data;
2733                 }
2734
2735                 return $data[0]['value'];
2736         }
2737
2738         /**
2739          * Strips any invalid characters from the string for a given table and column.
2740          *
2741          * @since 4.2.0
2742          * @access public
2743          *
2744          * @param string $table  Table name.
2745          * @param string $column Column name.
2746          * @param string $value  The text to check.
2747          * @return string|WP_Error The converted string, or a WP_Error object if the conversion fails.
2748          */
2749         public function strip_invalid_text_for_column( $table, $column, $value ) {
2750                 if ( ! is_string( $value ) || $this->check_ascii( $value ) ) {
2751                         return $value;
2752                 }
2753
2754                 $charset = $this->get_col_charset( $table, $column );
2755                 if ( ! $charset ) {
2756                         // Not a string column.
2757                         return $value;
2758                 } elseif ( is_wp_error( $charset ) ) {
2759                         // Bail on real errors.
2760                         return $charset;
2761                 }
2762
2763                 $data = array(
2764                         $column => array(
2765                                 'value'   => $value,
2766                                 'charset' => $charset,
2767                                 'ascii'   => false,
2768                         )
2769                 );
2770
2771                 $data = $this->strip_invalid_text( $data );
2772                 if ( is_wp_error( $data ) ) {
2773                         return $data;
2774                 }
2775
2776                 return $data[ $column ]['value'];
2777         }
2778
2779         /**
2780          * Find the first table name referenced in a query.
2781          *
2782          * @since 4.2.0
2783          * @access protected
2784          *
2785          * @param string $query The query to search.
2786          * @return string|false $table The table name found, or false if a table couldn't be found.
2787          */
2788         protected function get_table_from_query( $query ) {
2789                 // Remove characters that can legally trail the table name.
2790                 $query = rtrim( $query, ';/-#' );
2791
2792                 // Allow (select...) union [...] style queries. Use the first query's table name.
2793                 $query = ltrim( $query, "\r\n\t (" );
2794
2795                 /*
2796                  * Strip everything between parentheses except nested selects and use only 1,000
2797                  * chars of the query.
2798                  */
2799                 $query = preg_replace( '/\((?!\s*select)[^(]*?\)/is', '()', substr( $query, 0, 1000 ) );
2800
2801                 // Quickly match most common queries.
2802                 if ( preg_match( '/^\s*(?:'
2803                                 . 'SELECT.*?\s+FROM'
2804                                 . '|INSERT(?:\s+LOW_PRIORITY|\s+DELAYED|\s+HIGH_PRIORITY)?(?:\s+IGNORE)?(?:\s+INTO)?'
2805                                 . '|REPLACE(?:\s+LOW_PRIORITY|\s+DELAYED)?(?:\s+INTO)?'
2806                                 . '|UPDATE(?:\s+LOW_PRIORITY)?(?:\s+IGNORE)?'
2807                                 . '|DELETE(?:\s+LOW_PRIORITY|\s+QUICK|\s+IGNORE)*(?:\s+FROM)?'
2808                                 . ')\s+`?([\w-]+)`?/is', $query, $maybe ) ) {
2809                         return $maybe[1];
2810                 }
2811
2812                 // SHOW TABLE STATUS and SHOW TABLES
2813                 if ( preg_match( '/^\s*(?:'
2814                                 . 'SHOW\s+TABLE\s+STATUS.+(?:LIKE\s+|WHERE\s+Name\s*=\s*)'
2815                                 . '|SHOW\s+(?:FULL\s+)?TABLES.+(?:LIKE\s+|WHERE\s+Name\s*=\s*)'
2816                                 . ')\W([\w-]+)\W/is', $query, $maybe ) ) {
2817                         return $maybe[1];
2818                 }
2819
2820                 // Big pattern for the rest of the table-related queries.
2821                 if ( preg_match( '/^\s*(?:'
2822                                 . '(?:EXPLAIN\s+(?:EXTENDED\s+)?)?SELECT.*?\s+FROM'
2823                                 . '|DESCRIBE|DESC|EXPLAIN|HANDLER'
2824                                 . '|(?:LOCK|UNLOCK)\s+TABLE(?:S)?'
2825                                 . '|(?:RENAME|OPTIMIZE|BACKUP|RESTORE|CHECK|CHECKSUM|ANALYZE|REPAIR).*\s+TABLE'
2826                                 . '|TRUNCATE(?:\s+TABLE)?'
2827                                 . '|CREATE(?:\s+TEMPORARY)?\s+TABLE(?:\s+IF\s+NOT\s+EXISTS)?'
2828                                 . '|ALTER(?:\s+IGNORE)?\s+TABLE'
2829                                 . '|DROP\s+TABLE(?:\s+IF\s+EXISTS)?'
2830                                 . '|CREATE(?:\s+\w+)?\s+INDEX.*\s+ON'
2831                                 . '|DROP\s+INDEX.*\s+ON'
2832                                 . '|LOAD\s+DATA.*INFILE.*INTO\s+TABLE'
2833                                 . '|(?:GRANT|REVOKE).*ON\s+TABLE'
2834                                 . '|SHOW\s+(?:.*FROM|.*TABLE)'
2835                                 . ')\s+\(*\s*`?([\w-]+)`?\s*\)*/is', $query, $maybe ) ) {
2836                         return $maybe[1];
2837                 }
2838
2839                 return false;
2840         }
2841
2842         /**
2843          * Load the column metadata from the last query.
2844          *
2845          * @since 3.5.0
2846          *
2847          * @access protected
2848          */
2849         protected function load_col_info() {
2850                 if ( $this->col_info )
2851                         return;
2852
2853                 if ( $this->use_mysqli ) {
2854                         for ( $i = 0; $i < @mysqli_num_fields( $this->result ); $i++ ) {
2855                                 $this->col_info[ $i ] = @mysqli_fetch_field( $this->result );
2856                         }
2857                 } else {
2858                         for ( $i = 0; $i < @mysql_num_fields( $this->result ); $i++ ) {
2859                                 $this->col_info[ $i ] = @mysql_fetch_field( $this->result, $i );
2860                         }
2861                 }
2862         }
2863
2864         /**
2865          * Retrieve column metadata from the last query.
2866          *
2867          * @since 0.71
2868          *
2869          * @param string $info_type Optional. Type one of name, table, def, max_length, not_null, primary_key, multiple_key, unique_key, numeric, blob, type, unsigned, zerofill
2870          * @param int $col_offset Optional. 0: col name. 1: which table the col's in. 2: col's max length. 3: if the col is numeric. 4: col's type
2871          * @return mixed Column Results
2872          */
2873         public function get_col_info( $info_type = 'name', $col_offset = -1 ) {
2874                 $this->load_col_info();
2875
2876                 if ( $this->col_info ) {
2877                         if ( $col_offset == -1 ) {
2878                                 $i = 0;
2879                                 $new_array = array();
2880                                 foreach( (array) $this->col_info as $col ) {
2881                                         $new_array[$i] = $col->{$info_type};
2882                                         $i++;
2883                                 }
2884                                 return $new_array;
2885                         } else {
2886                                 return $this->col_info[$col_offset]->{$info_type};
2887                         }
2888                 }
2889         }
2890
2891         /**
2892          * Starts the timer, for debugging purposes.
2893          *
2894          * @since 1.5.0
2895          *
2896          * @return bool
2897          */
2898         public function timer_start() {
2899                 $this->time_start = microtime( true );
2900                 return true;
2901         }
2902
2903         /**
2904          * Stops the debugging timer.
2905          *
2906          * @since 1.5.0
2907          *
2908          * @return float Total time spent on the query, in seconds
2909          */
2910         public function timer_stop() {
2911                 return ( microtime( true ) - $this->time_start );
2912         }
2913
2914         /**
2915          * Wraps errors in a nice header and footer and dies.
2916          *
2917          * Will not die if wpdb::$show_errors is false.
2918          *
2919          * @since 1.5.0
2920          *
2921          * @param string $message The Error message
2922          * @param string $error_code Optional. A Computer readable string to identify the error.
2923          * @return false|void
2924          */
2925         public function bail( $message, $error_code = '500' ) {
2926                 if ( !$this->show_errors ) {
2927                         if ( class_exists( 'WP_Error' ) )
2928                                 $this->error = new WP_Error($error_code, $message);
2929                         else
2930                                 $this->error = $message;
2931                         return false;
2932                 }
2933                 wp_die($message);
2934         }
2935
2936         /**
2937          * Whether MySQL database is at least the required minimum version.
2938          *
2939          * @since 2.5.0
2940          * @uses $wp_version
2941          * @uses $required_mysql_version
2942          *
2943          * @return WP_Error
2944          */
2945         public function check_database_version() {
2946                 global $wp_version, $required_mysql_version;
2947                 // Make sure the server has the required MySQL version
2948                 if ( version_compare($this->db_version(), $required_mysql_version, '<') )
2949                         return new WP_Error('database_version', sprintf( __( '<strong>ERROR</strong>: WordPress %1$s requires MySQL %2$s or higher' ), $wp_version, $required_mysql_version ));
2950         }
2951
2952         /**
2953          * Whether the database supports collation.
2954          *
2955          * Called when WordPress is generating the table scheme.
2956          *
2957          * @since 2.5.0
2958          * @deprecated 3.5.0
2959          * @deprecated Use wpdb::has_cap( 'collation' )
2960          *
2961          * @return bool True if collation is supported, false if version does not
2962          */
2963         public function supports_collation() {
2964                 _deprecated_function( __FUNCTION__, '3.5', 'wpdb::has_cap( \'collation\' )' );
2965                 return $this->has_cap( 'collation' );
2966         }
2967
2968         /**
2969          * The database character collate.
2970          *
2971          * @since 3.5.0
2972          *
2973          * @return string The database character collate.
2974          */
2975         public function get_charset_collate() {
2976                 $charset_collate = '';
2977
2978                 if ( ! empty( $this->charset ) )
2979                         $charset_collate = "DEFAULT CHARACTER SET $this->charset";
2980                 if ( ! empty( $this->collate ) )
2981                         $charset_collate .= " COLLATE $this->collate";
2982
2983                 return $charset_collate;
2984         }
2985
2986         /**
2987          * Determine if a database supports a particular feature.
2988          *
2989          * @since 2.7.0
2990          * @since 4.1.0 Support was added for the 'utf8mb4' feature.
2991          *
2992          * @see wpdb::db_version()
2993          *
2994          * @param string $db_cap The feature to check for. Accepts 'collation',
2995          *                       'group_concat', 'subqueries', 'set_charset',
2996          *                       or 'utf8mb4'.
2997          * @return bool Whether the database feature is supported, false otherwise.
2998          */
2999         public function has_cap( $db_cap ) {
3000                 $version = $this->db_version();
3001
3002                 switch ( strtolower( $db_cap ) ) {
3003                         case 'collation' :    // @since 2.5.0
3004                         case 'group_concat' : // @since 2.7.0
3005                         case 'subqueries' :   // @since 2.7.0
3006                                 return version_compare( $version, '4.1', '>=' );
3007                         case 'set_charset' :
3008                                 return version_compare( $version, '5.0.7', '>=' );
3009                         case 'utf8mb4' :      // @since 4.1.0
3010                                 if ( version_compare( $version, '5.5.3', '<' ) ) {
3011                                         return false;
3012                                 }
3013                                 if ( $this->use_mysqli ) {
3014                                         $client_version = mysqli_get_client_info();
3015                                 } else {
3016                                         $client_version = mysql_get_client_info();
3017                                 }
3018
3019                                 /*
3020                                  * libmysql has supported utf8mb4 since 5.5.3, same as the MySQL server.
3021                                  * mysqlnd has supported utf8mb4 since 5.0.9.
3022                                  */
3023                                 if ( false !== strpos( $client_version, 'mysqlnd' ) ) {
3024                                         $client_version = preg_replace( '/^\D+([\d.]+).*/', '$1', $client_version );
3025                                         return version_compare( $client_version, '5.0.9', '>=' );
3026                                 } else {
3027                                         return version_compare( $client_version, '5.5.3', '>=' );
3028                                 }
3029                 }
3030
3031                 return false;
3032         }
3033
3034         /**
3035          * Retrieve the name of the function that called wpdb.
3036          *
3037          * Searches up the list of functions until it reaches
3038          * the one that would most logically had called this method.
3039          *
3040          * @since 2.5.0
3041          *
3042          * @return string The name of the calling function
3043          */
3044         public function get_caller() {
3045                 return wp_debug_backtrace_summary( __CLASS__ );
3046         }
3047
3048         /**
3049          * The database version number.
3050          *
3051          * @since 2.7.0
3052          *
3053          * @return null|string Null on failure, version number on success.
3054          */
3055         public function db_version() {
3056                 if ( $this->use_mysqli ) {
3057                         $server_info = mysqli_get_server_info( $this->dbh );
3058                 } else {
3059                         $server_info = mysql_get_server_info( $this->dbh );
3060                 }
3061                 return preg_replace( '/[^0-9.].*/', '', $server_info );
3062         }
3063 }