public function DatabaseConnection::utf8mb4IsActive in Drupal 7
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 - Core systems for the database layer.
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;
}