我有以下代码将在我的页面上显示来自用户的最新推文。
<div id="last-tweet" class="grid_12">
<p><b>@user: </b> <?php
$username='username'; // set user name
$format='json'; // set format
$tweet=json_decode(file_get_contents("http://api.twitter.com/1/statuses/user_timeline/{$username}.{$format}")); // get tweets and decode them into a variable
echo $tweet[0]->text; // show latest tweet
?></p>
</div>
有谁知道我如何可以为此添加“主题标签”约束,这样它只会显示来自该用户的带有特定主题标签的推文?
谢谢dvent