2

我正在使用 SimplePie (v1.3.1) 在网页上显示 RSS 提要。其中一个标题包含一个欧元 (€) 符号,并在页面上显示为 €。当我在他们的网站上使用 SimplePie 的演示时,它显示正确,所以应该没问题。但是我无法让它工作。

我已经做了什么:

  • 在 SimplePie 的网站和文档上搜索
  • 在stackoverflow的网站上搜索
  • 在谷歌上搜索
  • 在没有任何运气的情况下尝试了数十种给定的“解决方案”

我能找到的是,这可能是一个字符编码问题,据我所知,这应该设置为 UTF-8。下面是我当前的测试代码,基于 SimplePie 演示。我已经添加了 SimplePie 的常见问题解答中给出的 3 个解决方案(请参阅我看到奇怪的字符)。

我究竟做错了什么?

<?php
header('Content-type:text/html; charset=utf-8');
// Make sure SimplePie is included. You may need to change this to match the location of autoloader.php
// For 1.3+:
require_once('./php/autoloader.php');

// We'll process this feed with all of the default options.
$feed = new SimplePie();

// Set the feed to process.
$feed->set_feed_url(***RSS_FEED_URL_HERE***);

// Run SimplePie.
$feed->init();

// This makes sure that the content is sent to the browser as text/html and the UTF-8 character set (since we didn't change it).
$feed->handle_content_type();

// Let's begin our XHTML webpage code.  The DOCTYPE is supposed to be the very first thing, so we'll keep it on the same line as the closing-PHP tag.
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
    <title>Sample SimplePie Page</title>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
    <style type="text/css">
    /*some css*/
    </style>
</head>
<body>
    <div class="header">
        <h1><a href="<?php echo $feed->get_permalink(); ?>"><?php echo $feed->get_title(); ?></a></h1>
        <p><?php echo $feed->get_description(); ?></p>
    </div>
    <?php
    foreach ($feed->get_items() as $item):
    ?>
        <div class="item">
            <h2><a href="<?php echo $item->get_permalink(); ?>"><?php echo $item->get_title(); ?></a></h2>
            <p><?php echo $item->get_description(); ?></p>
            <p><small>Posted on <?php echo $item->get_date('j F Y | g:i a'); ?></small></p>
        </div>
    <?php endforeach; ?>
</body>
</html>

[编辑] 更多信息:

  • 来自 RSS 的 XML 具有 UTF-8 编码 ( <?xml version="1.0" encoding="UTF-8"?>)
  • 使用echo str_replace("€", "&euro;", $item->get_title());有效,但不是很好
4

3 回答 3

4

我也遇到了欧元符号显示为“â,¬”的问题在摆弄了一段时间没有成功的编码之后,我只是进行了以下字符串替换:

str_replace(chr(0xE2).chr(0x82).chr(0xAC), '&euro;', $mystring)

http://www.mauserrifle.nl/php/php-and-replacing-euro-signs/所示。由于这是一项后端工作,因此我对性能损失没有任何问题。

于 2016-01-10T10:10:25.477 回答
0

据我所知,您的问题是提要发布的内容不是 UTF-8 格式,即使您的页面是 UTF-8 格式。

你所要做的就是使用这个

<?php
utf8_encode ($feed )// the rss feed from another page
?>

希望能解决你的问题

于 2013-03-19T10:45:48.683 回答
0

用特殊字符实体替换符号。

&euro;

如果使:€

http://www.utexas.edu/learn/html/spchar.html

于 2013-03-19T10:21:27.380 回答