For string fields, records the maximum string length that field can safely save.
Parameters
$dataarrayrequired- Array of values, formats, and charsets keyed by their field names, as it comes from the wpdb::process_field_charsets() method.
...$0arrayValue, format, and charset for this field.valuemixedThe value to be formatted.formatstringThe format to be mapped to the value.charsetstring|falseThe charset to be used for the value.
$tablestringrequired- Table name.
Source
protected function process_field_lengths( $data, $table ) {
foreach ( $data as $field => $value ) {
if ( '%d' === $value['format'] || '%f' === $value['format'] ) {
/*
* We can skip this field if we know it isn't a string.
* This checks %d/%f versus ! %s because its sprintf() could take more.
*/
$value['length'] = false;
} else {
$value['length'] = $this->get_col_length( $table, $field );
if ( is_wp_error( $value['length'] ) ) {
return false;
}
}
$data[ $field ] = $value;
}
return $data;
}
Changelog
| Version | Description |
|---|---|
| 4.2.1 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.