apply_filters( 'pre_get_col_charset', string|null $charset, string $table, string $column )

Filters the column charset value before the DB is checked.


Description

Passing a non-null value to the filter will short-circuit checking the DB for the charset, returning that value instead.


Top ↑

Parameters

$charset string|null
The character set to use. Default null.
$table string
The name of the table being checked.
$column string
The name of the column being checked.

Top ↑

Source

File: wp-includes/class-wpdb.php. View all references

$charset = apply_filters( 'pre_get_col_charset', null, $table, $column );


Top ↑

Changelog

Changelog
Version Description
4.2.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.