Helper function for insert and replace.
Runs an insert or replace query based on $type argument.
$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
$typestringoptional
'INSERT' or 'REPLACE'.'INSERT'.Default:'INSERT'
public function _insert_replace_helper( $table, $data, $format = null, $type = 'INSERT' ) {
$this->insert_id = 0;
if ( ! in_array( strtoupper( $type ), array( 'REPLACE', 'INSERT' ), true ) ) {
return false;
}
$data = $this->process_fields( $table, $data, $format );
if ( false === $data ) {
return false;
}
$formats = array();
$values = array();
foreach ( $data as $value ) {
if ( is_null( $value['value'] ) ) {
$formats[] = 'NULL';
continue;
}
$formats[] = $value['format'];
$values[] = $value['value'];
}
$fields = '`' . implode( '`, `', array_keys( $data ) ) . '`';
$formats = implode( ', ', $formats );
$sql = "$type INTO `$table` ($fields) VALUES ($formats)";
$this->check_current_query = false;
return $this->query( $this->prepare( $sql, $values ) );
}
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |
© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wpdb/_insert_replace_helper