Debug toolbar WIP

This commit is contained in:
Qiang Xue
2013-07-05 16:40:12 -04:00
parent 4ec95e6dc2
commit 5eac34a485
5 changed files with 57 additions and 12 deletions

View File

@ -24,6 +24,9 @@ class StringHelper
*/
public static function strlen($string)
{
if (!function_exists('mb_strlen')) {
throw new \Exception('here');
}
return mb_strlen($string, '8bit');
}