Uses
Uses | Description |
---|---|
wp-includes/wp-db.php: wpdb::_insert_replace_helper() | Helper function for insert and replace. |
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’ ) )
(string) (Required) Table name.
(array) (Required) Data to insert (in column => value pairs). Both $data columns and $data values should be "raw" (neither should be SQL escaped). Sending a null value will cause the column to be set to NULL
(array|string) (Optional) An array of formats to be mapped to each of the value in $data. If string, that format will be used for all of the values in $data. A format is one of '%d', '%f', '%s' (integer, float, string). If omitted, all values in $data will be treated as strings unless otherwise specified in wpdb::$field_types.
Default value: null
(int|false) The number of rows affected, or false on error.
File: wp-includes/wp-db.php
public function replace( $table, $data, $format = null ) { return $this->_insert_replace_helper( $table, $data, $format, 'REPLACE' ); }
Version | Description |
---|---|
3.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wpdb/replace