2015-07-20 104 views

回答

0

想通了:)

// fix for logical/visual order encodings, e.g. iso-8859-8-i; PHP doesn't support conversion from these encodings so we just drop the ordering part of the encoding string 
    if (stripos($from_encoding, 'iso-8859-8') !== false) 
    { 
     $from_encoding = 'iso-8859-8'; 
    } 

这是-i部分mb_convert_encoding不喜欢。