PHP:RSS feed不会使用出现的重音字符来验证



我用PHP制作了自己的RSS feed,但是当我使用重音字符时,我无法对其进行验证。我找不到解决方案。

这是我的RSS feed到现在:

<?xml version="1.0"?>
        <rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
        <channel>
        <title>My site</title>
        <link>http://www.example.com</link>
        <description>The newest music</description>
        <atom:link href="http://www.example.com/feed.php" rel="self"></atom:link>
        <item>
        <title><![CDATA[Beyoncé - Sorry]]></title>
        <description>New Music</description>
        <pubDate>Thu, 23 Jun 2016 09:07:10 +0000</pubDate>
        <guid>http://www.example.com/beyonce/sorry</guid>
        <enclosure url="mypicture.jpg" length="0" type="image/jpeg"></enclosure>
        <link>http://www.example.com/beyonce/sorry</link>
        </item>
        </channel>
    </rss>

我尝试了CDATA标签,并修复了特殊字符,但没有重音。有任何想法吗?

我使用了:https://validator.w3.org/feed/check.cgi作为验证器。错误消息:"'utf8'编解码器无法在位置2474中解码字节0xE9:无效延续字节(也许是高位字符?)"

我检查了我的Firefox和IE浏览器,它只是没有带有重音角色的项目。整个提要中的其他项目都很好。

这是标题信息:

header('Content-type: text/xml; charset=utf-8');

我自己找到了答案。

确保使用utf8_encode()使重音字符正确。

示例:

$title = Beyoncé;
$title = utf8_encode($title);
echo $title

相关内容

  • 没有找到相关文章

最新更新