我拼凑了下面的代码块,以帮助我从我的 Twitter 帐户在我的网站上显示最新的推文。但是,它不太正常,你能帮我调试一下最后一点吗?我正在寻找 PHP 将其转换为 HTML,并使用链接标签包裹 Twitter 用户名和它正在使用的链接preg_replace
。
如果你测试这个脚本,你会发现当它在推文中呈现标准链接时会出现问题,它会将结束 <a> 标记放在a
. 我确信这相对容易修复,并且可能与转义字符或其他东西有关。
我的主要代码块:
<?php
/** Script to pull in the latest tweet */
$username='benpaton';
$format = 'json';
$tweet = json_decode(file_get_contents("http://api.twitter.com/1/statuses/user_timeline/{$username}.{$format}"));
$latestTweet = htmlentities($tweet[0]->text, ENT_QUOTES);
$latestTweet = preg_replace('/http:\/\/([[a-z0-9_\.\-\+\&\!\#\~\,]+)/i', '<a href="http://$1" target="_blank">http://$1</a>', $latestTweet);
$latestTweet = preg_replace('/@([a-z0-9_]+)/i', '<a href="http://twitter.com/$1" target="_blank">@$1</a>', $latestTweet);
echo $latestTweet;
?>