0

我有这个代码可以进入推特提要......

// 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 。这可以做到吗?

4

1 回答 1

1

只需有一个数组并在每次循环运行时将其插入,然后将其回显或返回。

 $arr = array();
 for($i=0; $i<$count; $i++) {
   $text = $decode[$i]['text'];
   $arr[] = $text;
   echo $text . " ";
 }

 var_dump($arr);
于 2013-03-26T20:47:46.847 回答