mb_strlen and mb_internal_encoding have been in core PHP since version 4.0.6
mb_strtolower has been in core PHP since version 4.3.0
This commit is contained in:
parent
7bd581b530
commit
a5a89dc08d
1 changed files with 0 additions and 18 deletions
|
@ -432,24 +432,6 @@ function endsWith(/*string*/ $haystack, /*string*/ $needle) {
|
|||
return (substr($haystack, $start) === $needle);
|
||||
}
|
||||
|
||||
if(!function_exists("mb_strlen")) { // D:
|
||||
|
||||
/**
|
||||
* @param string $str
|
||||
*/
|
||||
function mb_strlen($str) {return strlen($str);}
|
||||
|
||||
/**
|
||||
* @param string $enc
|
||||
*/
|
||||
function mb_internal_encoding($enc) {}
|
||||
|
||||
/**
|
||||
* @param string $str
|
||||
*/
|
||||
function mb_strtolower($str) {return strtolower($str);}
|
||||
}
|
||||
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\
|
||||
* HTML Generation *
|
||||
\* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
|
Reference in a new issue