Replaces a row in the table or inserts it if it does not exist, based on a PRIMARY KEY or a UNIQUE index.
A REPLACE works exactly like an INSERT, except that if an old row in the table has the same value as a new row for a PRIMARY KEY or a UNIQUE index, the old row is deleted before the new row is inserted.
Examples:
$wpdb->replace(
'table',
array(
'ID' => 123,
'column1' => 'foo',
'column2' => 'bar',
)
);
$wpdb->replace(
'table',
array(
'ID' => 456,
'column1' => 'foo',
'column2' => 1337,
),
array(
'%d',
'%s',
'%d',
)
); $tablestringrequired
$dataarrayrequired
$data columns and $data values should be "raw" (neither should be SQL escaped).$formatstring[]|stringoptional
$data.$data.'%d', '%f', '%s' (integer, float, string).$data will be treated as strings unless otherwise specified in wpdb::$field_types. Default:null
public function replace( $table, $data, $format = null ) {
return $this->_insert_replace_helper( $table, $data, $format, 'REPLACE' );
}
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |
© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wpdb/replace