我有这个代码可以进入推特提要......
// Output tweets
$json = file_get_contents("http://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=false&screen_name=*********&count=100", true);
$decode = json_decode($json, true);
$count = count($decode); //counting the number of status
for($i=0;$i<$count;$i++){
//echo $decode[$i]["text"]."<br><br>";
$text = $decode[$i]["text"]." ";
echo $text;
}
我想在另一个函数中访问 $text 。这可以做到吗?