check if Trad or Simp Chinse http://stackoverflow.com/questions/4083038/recognizing-text-as-simplified-vs-traditional-chinese $test1 = iconv(“UTF-8”, “big5//TRANSLIT”, $text); $test2 = iconv(“UTF-8”, “big5//IGNORE”, $text); if ($test1 == $test2) { echo ’traditional’; } else { $test3 = iconv(“UTF-8”, “gb2312//TRANSLIT”, $text); $test4 = iconv(“UTF-8”, “gb2312//IGNORE”, $text); if ($test3 == $test4) { echo ’simplified’; } else { echo ’Failed to match either traditional or simplified’; } } to conv http://stackoverflow.com/questions/2248532/get-source-code-with-chinese-characters-php Post navigation PHP remove duplicated array items download big file with file_put_contents