public static Unicode::getStatus()
Gets the current status of unicode/multibyte support on this environment.
Return value
int The status of multibyte support. It can be one of:
- \Drupal\Component\Utility\Unicode::STATUS_MULTIBYTE Full unicode support using an extension.
- \Drupal\Component\Utility\Unicode::STATUS_SINGLEBYTE Standard PHP (emulated) unicode support.
- \Drupal\Component\Utility\Unicode::STATUS_ERROR An error occurred. No unicode support.
File
- core/lib/Drupal/Component/Utility/Unicode.php, line 109
Class
- Unicode
- Provides Unicode-related conversions and operations.
Namespace
Drupal\Component\Utility
Code
public static function getStatus() { return static::$status; }
Please login to continue.