mb_strlen
Compat function to mimic mb_strlen().
Description
(int) mb_strlen( (string) $string );
Returns (int)
the number of characters in the string
Parameters (1)
- 0. $string (string)
- The string to determine the lenght of
Usage
if ( !function_exists( 'mb_strlen' ) ) { require_once '/includes/multibyte_supplicant.php'; } // the string to determine the lenght of $string = ''; // NOTICE! Understand what this does before running. $result = mb_strlen($string);
Defined (1)
The function is defined in the following location(s).
- /includes/multibyte_supplicant.php
- function mb_strlen($string)
- {
- return strlen($string);
- }