<?
$Tweet = file_get_contents("http://api.twitter.com/1/statuses/user_timeline.json?screen_name=EdVizenor&count=1");
//$Tweet = explode(",",$Tweet);
/// If I explode and echo the $Tweet(3); i get .... "text":"mY LATEST TWEET"
var_dump(json_decode($Tweet,true));
?>
我想要做的是通过密钥解析数组。类似的东西:
echo $Tweet(text); /// but this does not work.
答案 0 :(得分:1)
了解错误是有帮助的。问题是$Tweet(text)
将调用$Tweet
中包含的函数,因为该变量不是函数,而是实际数组,实际上只需要
<?php
// your code
$tweets = json_decode($Tweet,true);
echo $tweets[0]['text'];
下次,请确保包含错误,这对您来说非常有帮助!