public function DatabaseConnection::utf8mb4IsActive

public DatabaseConnection::utf8mb4IsActive()

Checks whether utf8mb4 support is currently active.

Return value

bool

File

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!database!database.inc/function/DatabaseConnection::utf8mb4IsActive/7.x