了解编码的有用链接 http://kunststube.net/encoding/ - 由@deceze 共享
我正在尝试检测汉字但不能。当我尝试 echo 时,我得到这个“´Ë±¦±´ÒÑϼܔ。我不需要显示它,只需要检测html页面上的字符。
//Set the post parameters
curl_setopt($ch, CURLOPT_URL, 'http://bit.ly/1y');
//execute new request
$htmlcode = curl_exec($ch);
curl_close($ch);
if (stripos($htmlcode, "已下架") !== false) {
echo "True";
}else{
echo "Fail";
}
任何建议将不胜感激