| 1 database.inc | public DatabaseConnection::utf8mb4IsActive() | 
Checks whether utf8mb4 support is currently active.
Return value
bool:
File
- core/includes/ database/ database.inc, line 1462 
- 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;
}
