mirror of
https://github.com/retailcrm/Fetch.git
synced 2025-04-04 13:53:35 +03:00
fix: Вместо подавления ошибки в mb_string-функциях ловим выпадающий эксепшен
This commit is contained in:
parent
a306ea53af
commit
229e2e8a72
1 changed files with 9 additions and 2 deletions
|
@ -599,11 +599,18 @@ class Message
|
|||
}
|
||||
|
||||
$converted = null;
|
||||
if (!$converted && function_exists('mb_convert_encoding') && @mb_check_encoding($text, $from)) {
|
||||
$converted = @mb_convert_encoding($text, $to, $from);
|
||||
if (!$converted && function_exists('mb_convert_encoding')) {
|
||||
try {
|
||||
if (mb_check_encoding($text, $from)) {
|
||||
$converted = mb_convert_encoding($text, $to, $from);
|
||||
}
|
||||
} catch (\ValueError $e) {
|
||||
// noop
|
||||
}
|
||||
}
|
||||
|
||||
if (!$converted && function_exists('iconv')) {
|
||||
// Для `iconv` @ пока работает
|
||||
$converted = @iconv($from, $to . self::$charsetFlag, $text);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue