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