wpdb::get_charset_collate
Retrieves the database character collate.
Method of the class: wpdb{}
No Hooks.
Returns
String. The database character collate.
Usage
global $wpdb; $wpdb->get_charset_collate();
Changelog
| Since 3.5.0 | Introduced. |
wpdb::get_charset_collate() wpdb::get charset collate code WP 7.0
public function get_charset_collate() {
$charset_collate = '';
if ( ! empty( $this->charset ) ) {
$charset_collate = "DEFAULT CHARACTER SET $this->charset";
}
if ( ! empty( $this->collate ) ) {
$charset_collate .= " COLLATE $this->collate";
}
return $charset_collate;
}