stub more mb_ functions

This commit is contained in:
Shish 2017-06-08 09:37:21 +01:00
parent d105644d1b
commit 94ec37029a

View File

@ -963,6 +963,10 @@ if (!function_exists('mb_strlen')) {
function mb_strlen($str, $encoding) {
return strlen($str);
}
function mb_internal_encoding($encoding) {}
function mb_strtolower($str) {
return strtolower($str);
}
}
/**