SimplePie を使用して RSS フィードを解析していますが、次の出力が得られます。
Don't forget our "Spot It, Post It" .....
私のコードは次のとおりです。
<?php
header('Content-type:text/html; charset=utf-8');
require_once('rss/simplepie.inc');
// We'll process this feed with all of the default options.
$feed = new SimplePie();
// Set which feed to process.
$feed->set_feed_url('FeedURL');
$feed->enable_cache(true);
$feed->set_cache_duration(3600);
$feed->set_cache_location('cache');
$feed->init();
$feed->handle_content_type();
?>
私は HTML5 Doctype を使用しており、次のものもあります。<meta charset="charset=utf-8">
私はそれを調べましたが、文字セットを明らかに持っているUTF-8に変更することについてすべて話しているので、他に何が原因なのかわかりません。
何か案は?