PHP JSON和Twitter

时间:2012-10-30 02:38:49

标签: php json api twitter

<?
$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. 

1 个答案:

答案 0 :(得分:1)

了解错误是有帮助的。问题是$Tweet(text)将调用$Tweet中包含的函数,因为该变量不是函数,而是实际数组,实际上只需要

<?php
// your code
$tweets = json_decode($Tweet,true);
echo $tweets[0]['text'];

下次,请确保包含错误,这对您来说非常有帮助!