1.20.x database.inc public DatabaseConnection::utf8mb4IsSupported()

Checks whether utf8mb4 support is available on the current database system.

Return value

bool:

File

includes/database/database.inc, line 1442
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;
}