-5

我爬过 Abraham 的 twitter 类,终于让它在我的网站上显示我的最后一条推文。现在我对为什么
无法识别标签感到困惑,因为它在萤火虫中显示为正确的 html。这有什么共同的原因吗? http://liebdich.biz

PHP的对应行:

$tweets = $connection->get("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=".$twitteruser."&count=".$notweets); 
$text = $tweets[0] -> text;
echo $text;

谢谢!!

4

1 回答 1

1

Twitter 传输标签字符的 html 实体。如果您真的希望 PHP 为您编写 HTML,请尝试html_entity_decode

html_entity_decode("<br>");

给出:

<br>

有关详细信息,请参阅http://se1.php.net/function.html-entity-decode

请记住,Twitter 转义 HTML 是有原因的。逆转它需要您自担风险。

于 2013-08-06T15:34:05.637 回答