From b6c512a6b0420d5b83e05282c8d0251d47742fae Mon Sep 17 00:00:00 2001 From: alecpl Date: Thu, 22 Oct 2009 18:37:00 +0000 Subject: - fix rc_utf8_clean() on Windows (#1486232) --- program/include/rcube_shared.inc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'program') diff --git a/program/include/rcube_shared.inc b/program/include/rcube_shared.inc index d60291012..97314ccd1 100644 --- a/program/include/rcube_shared.inc +++ b/program/include/rcube_shared.inc @@ -599,12 +599,15 @@ function rc_utf8_clean($input) return $input; } - if (!is_string($input)) + if (!is_string($input) || $input == '') return $input; - // iconv is 10x faster - if (function_exists('iconv')) - return iconv('UTF8', 'UTF8//IGNORE', $input); + // iconv/mbstring are much faster (especially with long strings) + if (function_exists('mb_convert_encoding') && ($res = mb_convert_encoding($input, 'UTF8', 'UTF8'))) + return $res; + + if (function_exists('iconv') && ($res = iconv('UTF8', 'UTF8//IGNORE', $input))) + return $res; $regexp = '/^('. // '[\x00-\x7F]'. // UTF8-1 -- cgit v1.2.3