[ Index ]

PHP Cross Reference of WordPress

title

Body

[close]

/wp-includes/ -> wp-db.php (summary)

WordPress database access abstraction class Original code from {@link http://php.justinvincent.com Justin Vincent (justin@visunet.ie)}

File Size: 3829 lines (109 kb)
Included or required: 1 time
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

wpdb:: (70 methods):
  __construct()
  __get()
  __set()
  __isset()
  __unset()
  init_charset()
  determine_charset()
  set_charset()
  set_sql_mode()
  set_prefix()
  set_blog_id()
  get_blog_prefix()
  tables()
  select()
  _weak_escape()
  _real_escape()
  _escape()
  escape()
  escape_by_ref()
  prepare()
  esc_like()
  print_error()
  show_errors()
  hide_errors()
  suppress_errors()
  flush()
  db_connect()
  parse_db_host()
  check_connection()
  query()
  _do_query()
  log_query()
  placeholder_escape()
  add_placeholder_escape()
  remove_placeholder_escape()
  insert()
  replace()
  _insert_replace_helper()
  update()
  delete()
  process_fields()
  process_field_formats()
  process_field_charsets()
  process_field_lengths()
  get_var()
  get_row()
  get_col()
  get_results()
  get_table_charset()
  get_col_charset()
  get_col_length()
  check_ascii()
  check_safe_collation()
  strip_invalid_text()
  strip_invalid_text_from_query()
  strip_invalid_text_for_column()
  get_table_from_query()
  load_col_info()
  get_col_info()
  timer_start()
  timer_stop()
  bail()
  close()
  check_database_version()
  supports_collation()
  get_charset_collate()
  has_cap()
  get_caller()
  db_version()
  db_server_info()


Class: wpdb  - X-Ref

WordPress database access abstraction class.

This class is used to interact with a database without needing to use raw SQL statements.
By default, WordPress uses this class to instantiate the global $wpdb object, providing
access to the WordPress database.

It is possible to replace this class with your own by setting the $wpdb global variable
in wp-content/db.php file to your class. The wpdb class will still be included, so you can
extend it or simply use your own.

__construct( $dbuser, $dbpassword, $dbname, $dbhost )   X-Ref
Connects to the database server and selects a database.

Does the actual setting up
of the class properties and connection to the database.

since: 2.0.8
param: string $dbuser     Database user.
param: string $dbpassword Database password.
param: string $dbname     Database name.
param: string $dbhost     Database host.

__get( $name )   X-Ref
Makes private properties readable for backward compatibility.

since: 3.5.0
return: mixed The private member.
param: string $name The private member to get, and optionally process.

__set( $name, $value )   X-Ref
Makes private properties settable for backward compatibility.

since: 3.5.0
param: string $name  The private member to set.
param: mixed  $value The value to set.

__isset( $name )   X-Ref
Makes private properties check-able for backward compatibility.

since: 3.5.0
return: bool If the member is set or not.
param: string $name The private member to check.

__unset( $name )   X-Ref
Makes private properties un-settable for backward compatibility.

since: 3.5.0
param: string $name  The private member to unset

init_charset()   X-Ref
Sets $this->charset and $this->collate.

since: 3.1.0

determine_charset( $charset, $collate )   X-Ref
Determines the best charset and collation to use given a charset and collation.

For example, when able, utf8mb4 should be used instead of utf8.

since: 4.6.0
return: array {
param: string $charset The character set to check.
param: string $collate The collation to check.

set_charset( $dbh, $charset = null, $collate = null )   X-Ref
Sets the connection's character set.

since: 3.1.0
param: mysqli|resource $dbh     The connection returned by `mysqli_connect()` or `mysql_connect()`.
param: string          $charset Optional. The character set. Default null.
param: string          $collate Optional. The collation. Default null.

set_sql_mode( $modes = array()   X-Ref
Changes the current SQL mode, and ensures its WordPress compatibility.

If no modes are passed, it will ensure the current MySQL server modes are compatible.

since: 3.9.0
param: array $modes Optional. A list of SQL modes to set. Default empty array.

set_prefix( $prefix, $set_table_names = true )   X-Ref
Sets the table prefix for the WordPress tables.

since: 2.5.0
return: string|WP_Error Old prefix or WP_Error on error.
param: string $prefix          Alphanumeric name for the new prefix.
param: bool   $set_table_names Optional. Whether the table names, e.g. wpdb::$posts,

set_blog_id( $blog_id, $network_id = 0 )   X-Ref
Sets blog ID.

since: 3.0.0
return: int Previous blog ID.
param: int $blog_id
param: int $network_id Optional.

get_blog_prefix( $blog_id = null )   X-Ref
Gets blog prefix.

since: 3.0.0
return: string Blog prefix.
param: int $blog_id Optional.

tables( $scope = 'all', $prefix = true, $blog_id = 0 )   X-Ref
Returns an array of WordPress tables.

Also allows for the `CUSTOM_USER_TABLE` and `CUSTOM_USER_META_TABLE` to override the WordPress users
and usermeta tables that would otherwise be determined by the prefix.

The `$scope` argument can take one of the following:

- 'all' - returns 'all' and 'global' tables. No old tables are returned.
- 'blog' - returns the blog-level tables for the queried blog.
- 'global' - returns the global tables for the installation, returning multisite tables only on multisite.
- 'ms_global' - returns the multisite global tables, regardless if current installation is multisite.
- 'old' - returns tables which are deprecated.

since: 3.0.0
return: string[] Table names. When a prefix is requested, the key is the unprefixed table name.
param: string $scope   Optional. Possible values include 'all', 'global', 'ms_global', 'blog',
param: bool   $prefix  Optional. Whether to include table prefixes. If blog prefix is requested,
param: int    $blog_id Optional. The blog_id to prefix. Used only when prefix is requested.

select( $db, $dbh = null )   X-Ref
Selects a database using the current or provided database connection.

The database name will be changed based on the current database connection.
On failure, the execution will bail and display a DB error.

since: 0.71
param: string          $db  Database name.
param: mysqli|resource $dbh Optional database connection.

_weak_escape( $string )   X-Ref
Do not use, deprecated.

Use esc_sql() or wpdb::prepare() instead.

since: 2.8.0
return: string
param: string $string

_real_escape( $string )   X-Ref
Real escape, using mysqli_real_escape_string() or mysql_real_escape_string().

since: 2.8.0
return: string Escaped string.
param: string $string String to escape.

_escape( $data )   X-Ref
Escapes data. Works on arrays.

since: 2.8.0
return: string|array Escaped data, in the same type as supplied.
param: string|array $data Data to escape.

escape( $data )   X-Ref
Do not use, deprecated.

Use esc_sql() or wpdb::prepare() instead.

since: 0.71
return: string|array Escaped data, in the same type as supplied.
param: string|array $data Data to escape.

escape_by_ref( &$string )   X-Ref
Escapes content by reference for insertion into the database, for security.

since: 2.3.0
param: string $string String to escape.

prepare( $query, ...$args )   X-Ref
Prepares a SQL query for safe execution.

Uses sprintf()-like syntax. The following placeholders can be used in the query string:

- %d (integer)
- %f (float)
- %s (string)

All placeholders MUST be left unquoted in the query string. A corresponding argument
MUST be passed for each placeholder.

Note: There is one exception to the above: for compatibility with old behavior,
numbered or formatted string placeholders (eg, `%1$s`, `%5s`) will not have quotes
added by this function, so should be passed with appropriate quotes around them.

Literal percentage signs (`%`) in the query string must be written as `%%`. Percentage wildcards
(for example, to use in LIKE syntax) must be passed via a substitution argument containing
the complete LIKE string, these cannot be inserted directly in the query string.
Also see wpdb::esc_like().

Arguments may be passed as individual arguments to the method, or as a single array
containing all arguments. A combination of the two is not supported.

Examples:

$wpdb->prepare( "SELECT * FROM `table` WHERE `column` = %s AND `field` = %d OR `other_field` LIKE %s", array( 'foo', 1337, '%bar' ) );
$wpdb->prepare( "SELECT DATE_FORMAT(`field`, '%%c') FROM `table` WHERE `column` = %s", 'foo' );

since: 2.3.0
since: 5.3.0 Formalized the existing and already documented `...$args` parameter
return: string|void Sanitized query string, if there is a query to prepare.
param: string      $query   Query statement with sprintf()-like placeholders.
param: array|mixed $args    The array of variables to substitute into the query's placeholders
param: mixed       ...$args Further variables to substitute into the query's placeholders

esc_like( $text )   X-Ref
First half of escaping for `LIKE` special characters `%` and `_` before preparing for SQL.

Use this only before wpdb::prepare() or esc_sql(). Reversing the order is very bad for security.

Example Prepared Statement:

$wild = '%';
$find = 'only 43% of planets';
$like = $wild . $wpdb->esc_like( $find ) . $wild;
$sql  = $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE post_content LIKE %s", $like );

Example Escape Chain:

$sql  = esc_sql( $wpdb->esc_like( $input ) );

since: 4.0.0
return: string Text in the form of a LIKE phrase. The output is not SQL safe.
param: string $text The raw text to be escaped. The input typed by the user

print_error( $str = '' )   X-Ref
Prints SQL/DB error.

since: 0.71
return: void|false Void if the showing of errors is enabled, false if disabled.
param: string $str The error to display.

show_errors( $show = true )   X-Ref
Enables showing of database errors.

This function should be used only to enable showing of errors.
wpdb::hide_errors() should be used instead for hiding errors.

since: 0.71
return: bool Whether showing of errors was previously active.
param: bool $show Optional. Whether to show errors. Default true.

hide_errors()   X-Ref
Disables showing of database errors.

By default database errors are not shown.

since: 0.71
return: bool Whether showing of errors was previously active.

suppress_errors( $suppress = true )   X-Ref
Enables or disables suppressing of database errors.

By default database errors are suppressed.

since: 2.5.0
return: bool Whether suppressing of errors was previously active.
param: bool $suppress Optional. Whether to suppress errors. Default true.

flush()   X-Ref
Kills cached query results.

since: 0.71

db_connect( $allow_bail = true )   X-Ref
Connects to and selects database.

If `$allow_bail` is false, the lack of database connection will need to be handled manually.

since: 3.0.0
since: 3.9.0 $allow_bail parameter added.
return: bool True with a successful connection, false on failure.
param: bool $allow_bail Optional. Allows the function to bail. Default true.

parse_db_host( $host )   X-Ref
Parses the DB_HOST setting to interpret it for mysqli_real_connect().

mysqli_real_connect() doesn't support the host param including a port or socket
like mysql_connect() does. This duplicates how mysql_connect() detects a port
and/or socket file.

since: 4.9.0
return: array|false {
param: string $host The DB_HOST setting to parse.

check_connection( $allow_bail = true )   X-Ref
Checks that the connection to the database is still up. If not, try to reconnect.

If this function is unable to reconnect, it will forcibly die, or if called
after the {@see 'template_redirect'} hook has been fired, return false instead.

If `$allow_bail` is false, the lack of database connection will need to be handled manually.

since: 3.9.0
return: bool|void True if the connection is up.
param: bool $allow_bail Optional. Allows the function to bail. Default true.

query( $query )   X-Ref
Performs a database query, using current database connection.

More information can be found on the documentation page.

since: 0.71
return: int|bool Boolean true for CREATE, ALTER, TRUNCATE and DROP queries. Number of rows
param: string $query Database query.

_do_query( $query )   X-Ref
Internal function to perform the mysql_query() call.

since: 3.9.0
param: string $query The query to run.

log_query( $query, $query_time, $query_callstack, $query_start, $query_data )   X-Ref
Logs query data.

since: 5.3.0
param: string $query           The query's SQL.
param: float  $query_time      Total time spent on the query, in seconds.
param: string $query_callstack Comma-separated list of the calling functions.
param: float  $query_start     Unix timestamp of the time at the start of the query.
param: array  $query_data      Custom query data.

placeholder_escape()   X-Ref
Generates and returns a placeholder escape string for use in queries returned by ::prepare().

since: 4.8.3
return: string String to escape placeholders.

add_placeholder_escape( $query )   X-Ref
Adds a placeholder escape string, to escape anything that resembles a printf() placeholder.

since: 4.8.3
return: string The query with the placeholder escape string inserted where necessary.
param: string $query The query to escape.

remove_placeholder_escape( $query )   X-Ref
Removes the placeholder escape strings from a query.

since: 4.8.3
return: string The query with the placeholder removed.
param: string $query The query from which the placeholder will be removed.

insert( $table, $data, $format = null )   X-Ref
Inserts a row into the table.

Examples:

wpdb::insert( 'table', array( 'column' => 'foo', 'field' => 'bar' ) )
wpdb::insert( 'table', array( 'column' => 'foo', 'field' => 1337 ), array( '%s', '%d' ) )

since: 2.5.0
return: int|false The number of rows inserted, or false on error.
param: string       $table  Table name.
param: array        $data   Data to insert (in column => value pairs).
param: array|string $format Optional. An array of formats to be mapped to each of the value in $data.

replace( $table, $data, $format = null )   X-Ref
Replaces a row in the table.

Examples:

wpdb::replace( 'table', array( 'column' => 'foo', 'field' => 'bar' ) )
wpdb::replace( 'table', array( 'column' => 'foo', 'field' => 1337 ), array( '%s', '%d' ) )

since: 3.0.0
return: int|false The number of rows affected, or false on error.
param: string       $table  Table name.
param: array        $data   Data to insert (in column => value pairs).
param: array|string $format Optional. An array of formats to be mapped to each of the value in $data.

_insert_replace_helper( $table, $data, $format = null, $type = 'INSERT' )   X-Ref
Helper function for insert and replace.

Runs an insert or replace query based on $type argument.

since: 3.0.0
return: int|false The number of rows affected, or false on error.
param: string       $table  Table name.
param: array        $data   Data to insert (in column => value pairs).
param: array|string $format Optional. An array of formats to be mapped to each of the value in $data.
param: string       $type   Optional. Type of operation. Possible values include 'INSERT' or 'REPLACE'.

update( $table, $data, $where, $format = null, $where_format = null )   X-Ref
Updates a row in the table.

Examples:

wpdb::update( 'table', array( 'column' => 'foo', 'field' => 'bar' ), array( 'ID' => 1 ) )
wpdb::update( 'table', array( 'column' => 'foo', 'field' => 1337 ), array( 'ID' => 1 ), array( '%s', '%d' ), array( '%d' ) )

since: 2.5.0
return: int|false The number of rows updated, or false on error.
param: string       $table        Table name.
param: array        $data         Data to update (in column => value pairs).
param: array        $where        A named array of WHERE clauses (in column => value pairs).
param: array|string $format       Optional. An array of formats to be mapped to each of the values in $data.
param: array|string $where_format Optional. An array of formats to be mapped to each of the values in $where.

delete( $table, $where, $where_format = null )   X-Ref
Deletes a row in the table.

Examples:

wpdb::delete( 'table', array( 'ID' => 1 ) )
wpdb::delete( 'table', array( 'ID' => 1 ), array( '%d' ) )

since: 3.4.0
return: int|false The number of rows updated, or false on error.
param: string       $table        Table name.
param: array        $where        A named array of WHERE clauses (in column => value pairs).
param: array|string $where_format Optional. An array of formats to be mapped to each of the values in $where.

process_fields( $table, $data, $format )   X-Ref
Processes arrays of field/value pairs and field formats.

This is a helper method for wpdb's CRUD methods, which take field/value pairs
for inserts, updates, and where clauses. This method first pairs each value
with a format. Then it determines the charset of that field, using that
to determine if any invalid text would be stripped. If text is stripped,
then field processing is rejected and the query fails.

since: 4.2.0
return: array|false An array of fields that contain paired value and formats.
param: string $table  Table name.
param: array  $data   Field/value pair.
param: mixed  $format Format for each field.

process_field_formats( $data, $format )   X-Ref
Prepares arrays of value/format pairs as passed to wpdb CRUD methods.

since: 4.2.0
return: array Array, keyed by field names with values being an array
param: array $data   Array of fields to values.
param: mixed $format Formats to be mapped to the values in $data.

process_field_charsets( $data, $table )   X-Ref
Adds field charsets to field/value/format arrays generated by wpdb::process_field_formats().

since: 4.2.0
return: array|false The same array as $data with additional 'charset' keys.
param: array  $data  As it comes from the wpdb::process_field_formats() method.
param: string $table Table name.

process_field_lengths( $data, $table )   X-Ref
For string fields, records the maximum string length that field can safely save.

since: 4.2.1
return: array|false The same array as $data with additional 'length' keys, or false if
param: array  $data  As it comes from the wpdb::process_field_charsets() method.
param: string $table Table name.

get_var( $query = null, $x = 0, $y = 0 )   X-Ref
Retrieves one variable from the database.

Executes a SQL query and returns the value from the SQL result.
If the SQL result contains more than one column and/or more than one row,
the value in the column and row specified is returned. If $query is null,
the value in the specified column and row from the previous SQL result is returned.

since: 0.71
return: string|null Database query result (as string), or null on failure.
param: string|null $query Optional. SQL query. Defaults to null, use the result from the previous query.
param: int         $x     Optional. Column of value to return. Indexed from 0.
param: int         $y     Optional. Row of value to return. Indexed from 0.

get_row( $query = null, $output = OBJECT, $y = 0 )   X-Ref
Retrieves one row from the database.

Executes a SQL query and returns the row from the SQL result.

since: 0.71
return: array|object|null|void Database query result in format specified by $output or null on failure.
param: string|null $query  SQL query.
param: string      $output Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which
param: int         $y      Optional. Row to return. Indexed from 0.

get_col( $query = null, $x = 0 )   X-Ref
Retrieves one column from the database.

Executes a SQL query and returns the column from the SQL result.
If the SQL result contains more than one column, the column specified is returned.
If $query is null, the specified column from the previous SQL result is returned.

since: 0.71
return: array Database query result. Array indexed from 0 by SQL result row number.
param: string|null $query Optional. SQL query. Defaults to previous query.
param: int         $x     Optional. Column to return. Indexed from 0.

get_results( $query = null, $output = OBJECT )   X-Ref
Retrieves an entire SQL result set from the database (i.e., many rows).

Executes a SQL query and returns the entire SQL result.

since: 0.71
return: array|object|null Database query results.
param: string $query  SQL query.
param: string $output Optional. Any of ARRAY_A | ARRAY_N | OBJECT | OBJECT_K constants.

get_table_charset( $table )   X-Ref
Retrieves the character set for the given table.

since: 4.2.0
return: string|WP_Error Table character set, WP_Error object if it couldn't be found.
param: string $table Table name.

get_col_charset( $table, $column )   X-Ref
Retrieves the character set for the given column.

since: 4.2.0
return: string|false|WP_Error Column character set as a string. False if the column has
param: string $table  Table name.
param: string $column Column name.

get_col_length( $table, $column )   X-Ref
Retrieves the maximum string length allowed in a given column.

The length may either be specified as a byte length or a character length.

since: 4.2.1
return: array|false|WP_Error {
param: string $table  Table name.
param: string $column Column name.

check_ascii( $string )   X-Ref
Checks if a string is ASCII.

The negative regex is faster for non-ASCII strings, as it allows
the search to finish as soon as it encounters a non-ASCII character.

since: 4.2.0
return: bool True if ASCII, false if not.
param: string $string String to check.

check_safe_collation( $query )   X-Ref
Checks if the query is accessing a collation considered safe on the current version of MySQL.

since: 4.2.0
return: bool True if the collation is safe, false if it isn't.
param: string $query The query to check.

strip_invalid_text( $data )   X-Ref
Strips any invalid characters based on value/charset pairs.

since: 4.2.0
return: array|WP_Error The $data parameter, with invalid characters removed from each value.
param: array $data Array of value arrays. Each value array has the keys 'value' and 'charset'.

strip_invalid_text_from_query( $query )   X-Ref
Strips any invalid characters from the query.

since: 4.2.0
return: string|WP_Error The converted query, or a WP_Error object if the conversion fails.
param: string $query Query to convert.

strip_invalid_text_for_column( $table, $column, $value )   X-Ref
Strips any invalid characters from the string for a given table and column.

since: 4.2.0
return: string|WP_Error The converted string, or a WP_Error object if the conversion fails.
param: string $table  Table name.
param: string $column Column name.
param: string $value  The text to check.

get_table_from_query( $query )   X-Ref
Finds the first table name referenced in a query.

since: 4.2.0
return: string|false The table name found, or false if a table couldn't be found.
param: string $query The query to search.

load_col_info()   X-Ref
Loads the column metadata from the last query.

since: 3.5.0

get_col_info( $info_type = 'name', $col_offset = -1 )   X-Ref
Retrieves column metadata from the last query.

since: 0.71
return: mixed Column results.
param: string $info_type  Optional. Possible values include 'name', 'table', 'def', 'max_length',
param: int    $col_offset Optional. 0: col name. 1: which table the col's in. 2: col's max length.

timer_start()   X-Ref
Starts the timer, for debugging purposes.

since: 1.5.0
return: true

timer_stop()   X-Ref
Stops the debugging timer.

since: 1.5.0
return: float Total time spent on the query, in seconds.

bail( $message, $error_code = '500' )   X-Ref
Wraps errors in a nice header and footer and dies.

Will not die if wpdb::$show_errors is false.

since: 1.5.0
return: void|false Void if the showing of errors is enabled, false if disabled.
param: string $message    The error message.
param: string $error_code Optional. A computer-readable string to identify the error.

close()   X-Ref
Closes the current database connection.

since: 4.5.0
return: bool True if the connection was successfully closed,

check_database_version()   X-Ref
Determines whether MySQL database is at least the required minimum version.

since: 2.5.0
return: void|WP_Error

supports_collation()   X-Ref
Determines whether the database supports collation.

Called when WordPress is generating the table scheme.

Use `wpdb::has_cap( 'collation' )`.

since: 2.5.0
return: bool True if collation is supported, false if not.

get_charset_collate()   X-Ref
Retrieves the database character collate.

since: 3.5.0
return: string The database character collate.

has_cap( $db_cap )   X-Ref
Determines if a database supports a particular feature.

since: 2.7.0
since: 4.1.0 Added support for the 'utf8mb4' feature.
since: 4.6.0 Added support for the 'utf8mb4_520' feature.
return: int|false Whether the database feature is supported, false otherwise.
param: string $db_cap The feature to check for. Accepts 'collation', 'group_concat',

get_caller()   X-Ref
Retrieves a comma-separated list of the names of the functions that called wpdb.

since: 2.5.0
return: string Comma-separated list of the calling functions.

db_version()   X-Ref
Retrieves the database server version.

since: 2.7.0
return: string|null Version number on success, null on failure.

db_server_info()   X-Ref
Retrieves full database server information.

since: 5.5.0
return: string|false Server info on success, false on failure.



Generated: Tue Mar 19 01:00:02 2024 Cross-referenced by PHPXref 0.7.1