0
我正在爲我的web-site PHP twitter飼料。到目前爲止,我已經想出瞭如何輸出日期,但是我期望做的是挑出url並超鏈接它們。我也想挑選#hashtags,超鏈接它們來搜索twitter。我剛開始學習PHP,所以任何幫助,將不勝感激。PHP JSON Twitter的飼料改進
<?php
$count = 5;
$tweet=json_decode(file_get_contents("http://api.twitter.com/1/statuses/user_timeline/atrueresistance.json?count=".$count.""));
for ($i=1; $i <= $count; $i++){
echo "<div class='tweet'>".$tweet[($i-1)]->text."
<div class='tweet_date'>". date("M \- j",strtotime($tweet[($i-1)]->created_at))."
</div>
</div>";
}
?>
很好用 - 謝謝! –
我會建議使用CURL vs file_get_contents – Roi