You are here

constant UNICODE_MULTIBYTE in Drupal 5

Same name and namespace in other branches
  1. 4 includes/unicode.inc \UNICODE_MULTIBYTE
  2. 6 includes/unicode.inc \UNICODE_MULTIBYTE
  3. 7 includes/unicode.inc \UNICODE_MULTIBYTE

Indicates that full unicode support with the PHP mbstring extension is being used.

5 uses of UNICODE_MULTIBYTE
drupal_strlen in includes/unicode.inc
Count the amount of characters in a UTF-8 string. This is less than or equal to the byte count.
drupal_strtolower in includes/unicode.inc
Lowercase a UTF-8 string.
drupal_strtoupper in includes/unicode.inc
Uppercase a UTF-8 string.
drupal_substr in includes/unicode.inc
Cut off a piece of a string based on character indices and counts. Follows the same behaviour as PHP's own substr() function.
_unicode_check in includes/unicode.inc
Perform checks about Unicode support in PHP, and set the right settings if needed.

File

includes/unicode.inc, line 17

Code

define('UNICODE_MULTIBYTE', 1);