function DatabaseConnection::utf8mb4IsActive
Checks whether utf8mb4 support is currently active.
Return value
bool
3 methods override DatabaseConnection::utf8mb4IsActive()
- DatabaseConnection_mysql::utf8mb4IsActive in includes/
database/ mysql/ database.inc - Checks whether utf8mb4 support is currently active.
- DatabaseConnection_pgsql::utf8mb4IsActive in includes/
database/ pgsql/ database.inc - Checks whether utf8mb4 support is currently active.
- DatabaseConnection_sqlite::utf8mb4IsActive in includes/
database/ sqlite/ database.inc - Checks whether utf8mb4 support is currently active.
File
-
includes/
database/ database.inc, line 1403
Class
- DatabaseConnection
- Base Database API class.
Code
public function utf8mb4IsActive() {
// Since 4 byte UTF-8 is not supported by default, there is nothing to
// activate.
return FALSE;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.