のエンコードと奇妙な文字私はRSSフィードを解析するためにはSimplePieを使用しています、と私は次の出力を取得しています:はSimplePie RSSパーサ - でも、UTF-8
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文書型を使用していると私も持っている:<meta charset="charset=utf-8">
を、私はそれを見て、私ははっきりと持っているUTF-8に文字セットを変更することについてのすべての話...私は他に何あまりにもわからないんだけどましたはこれが原因です。
アイデア?