1 database.inc | public DatabaseConnection::utf8mb4IsSupported() |
Checks whether utf8mb4 support is available on the current database system.
Return value
bool:
File
- core/
includes/ database/ database.inc, line 1459 - Core systems for the database layer.
Class
- DatabaseConnection
- Base Database API class.
Code
public function utf8mb4IsSupported() {
// By default we assume that the database backend may not support 4 byte
// UTF-8.
return FALSE;
}