0
當我使用以下代碼:無法識別的字符喂
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://example.rss.net/feed/');
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXMLElement($data);
foreach($xml->channel->item as $post) {
echo $post->title;
}
和回聲柱,無法識別的字符被顯示,這樣阿姨,A,A。 我嘗試閱讀的Feed包含拉丁字符,我需要一種方法來正確顯示它們。
我忘了標題(「內容類型:text/html的;字符集= UTF- 8');現在工作,謝謝。 – Nogard