这就是我现在所拥有的

将RSS供稿绘制到php中,来自rss供稿的原始xml读取为:

Paul’s Confidence

到目前为止,我拥有的php是这个。
$newtitle = $item->title;
$newtitle = utf8_decode($newtitle);

以上 yield ;
Paul?s Confidence

如果我删除utf_decode,我会得到这个
Paul’s Confidence

当我尝试一个str_replace;
$newtitle = str_replace("”", "", $newtitle);

它不起作用,我明白了;
Paul’s Confidence

有什么想法吗?

最佳答案

试试这个:

$newtitle = html_entity_decode($newtitle, ENT_QUOTES, "UTF-8")

如果这不是解决方案,请浏览此页面http://us2.php.net/manual/en/function.html-entity-decode.php

09-27 04:51