好的,所以我调用了 Twitter API 来返回我朋友的状态,我做了一个 var_dump,它返回了一个信息数组.. 但是,我只想捕捉我朋友的 PROFILE IMAGEs .. 所以这就是我为抓住它所做的,它没有返回任何东西
$friends = $connection->get('statuses/friends_timeline'); //method that catches my friends'statuses on Twitter.
var_dump($friends);
下面的循环应该显示我朋友的图像..循环下面是var_dump返回给我的示例..我哪里出错了???
if( is_array($friends))
{
shuffle($friends);
}
for($i=0; $i <=count($friends);$i++)
if (is_array($friends))
{
foreach ($friends[$i] as $key => $value)
{
if(array_key_exists("profile_image_url", $friends[$i]))
{
echo "<img src='". $value."' width='100' height='100'/>";
}
}
}
array(20) {
[0]=>
object(stdClass)#7 (19) {
["id_str"]=>
string(18) "277310503989149697"
["user"]=>
object(stdClass)#8 (37) {
["id"]=>
int(48948037)
["default_profile"]=>
bool(false)
["following"]=>
bool(false)
["profile_background_tile"]=>
bool(true)
["id_str"]=>
string(8) "48948037"
["url"]=>
NULL
["profile_sidebar_fill_color"]=>
string(6) "CCD7DB"
["profile_image_url"]=>
string(66) "http://a0.twimg.com/profile_images/1821098433/photo__1__normal.JPG"
["utc_offset"]=>
int(-28800)
["contributors_enabled"]=>
bool(false)
["time_zone"]=>
string(26) "Pacific Time (US & Canada)"
["name"]=>
string(16) "Semirindi Makala"
["listed_count"]=>
int(1)
["profile_background_color"]=>
string(3) "fff"
["screen_name"]=>
string(7) "MASE_85"
["geo_enabled"]=>
bool(false)
["protected"]=>
bool(false)
["follow_request_sent"]=>
bool(false)
["location"]=>
string(13) "Teh internets"
["profile_background_image_url"]=>
string(69) "http://a0.twimg.com/profile_background_images/422730827/photo__1_.JPG"
["friends_count"]=>
int(15)
["verified"]=>
bool(false)
["profile_link_color"]=>
string(6) "0084B4"
["statuses_count"]=>
int(59)
["notifications"]=>
bool(false)
["default_profile_image"]=>
bool(false)
["favourites_count"]=>
int(0)
["lang"]=>
string(2) "en"
["profile_background_image_url_https"]=>
string(71) "https://si0.twimg.com/profile_background_images/422730827/photo__1_.JPG"
["profile_use_background_image"]=>
bool(true)
["profile_image_url_https"]=>
string(68) "https://si0.twimg.com/profile_images/1821098433/photo__1__normal.JPG"
["profile_text_color"]=>
string(6) "333333"
["followers_count"]=>
int(9)
["profile_sidebar_border_color"]=>
string(6) "A8C7F7"
["is_translator"]=>
bool(false)
["description"]=>
string(0) ""
["created_at"]=>
string(30) "Sat Jun 20 06:50:28 +0000 2009"
}
["in_reply_to_user_id"]=>
NULL
["in_reply_to_status_id"]=>
NULL
["coordinates"]=>
NULL
["geo"]=>
NULL
["created_at"]=>
string(30) "Sat Dec 08 07:15:50 +0000 2012"
["retweet_count"]=>
int(0)
["favorited"]=>
bool(false)
["created_at"]=>
string(30) "Sat Dec 08 06:40:59 +0000 2012"
["truncated"]=>
bool(false)
["in_reply_to_screen_name"]=>
NULL
["retweeted"]=>
bool(false)
["text"]=>
string(29) "Sat, 08 Dec 12 06:40:59 +0000"
["place"]=>
NULL
["source"]=>
string(65) "<a href="http://www.europe-zone.com" rel="nofollow">Madscore1</a>"
["in_reply_to_status_id_str"]=>
NULL
["id_str"]=>
string(18) "277301732894179328"
["in_reply_to_user_id"]=>
NULL
["in_reply_to_status_id"]=>
NULL
["id"]=>
float(2.7730173289418E+17)
}
[7]=>
object(stdClass)#21 (19) {
["in_reply_to_status_id_str"]=>
NULL
["user"]=>
object(stdClass)#22 (37) {
["id"]=>
int(48948037)
["followers_count"]=>
int(9)
["following"]=>
bool(false)
["url"]=>
NULL
["profile_sidebar_border_color"]=>
string(6) "A8C7F7"
["profile_image_url_https"]=>
string(68) "https://si0.twimg.com/profile_images/1821098433/photo__1__normal.JPG"
["utc_offset"]=>
int(-28800)
["default_profile"]=>
bool(false)
["profile_background_tile"]=>
bool(true)
["name"]=>
string(16) "Semirindi Makala"
["id_str"]=>
string(8) "48948037"
["profile_sidebar_fill_color"]=>
string(6) "CCD7DB"
["screen_name"]=>
string(7) "MASE_85"
["protected"]=>
bool(false)
["profile_image_url"]=>
string(66) "http://a0.twimg.com/profile_images/1821098433/photo__1__normal.JPG"
["location"]=>
string(13) "Teh internets"
["contributors_enabled"]=>
bool(false)
["listed_count"]=>
int(1)
["time_zone"]=>
string(26) "Pacific Time (US & Canada)"
["profile_background_color"]=>
string(3) "fff"
["geo_enabled"]=>
bool(false)
["notifications"]=>
bool(false)
["follow_request_sent"]=>
bool(false)
["lang"]=>
string(2) "en"
["profile_background_image_url"]=>
string(69) "http://a0.twimg.com/profile_background_images/422730827/photo__1_.JPG"
["friends_count"]=>
int(15)
["statuses_count"]=>
int(56)
["verified"]=>
bool(false)
["profile_link_color"]=>
string(6) "0084B4"
["default_profile_image"]=>
bool(false)
["favourites_count"]=>
int(0)
["profile_background_image_url_https"]=>
string(71) "https://si0.twimg.com/profile_background_images/422730827/photo__1_.JPG"
["profile_use_background_image"]=>
bool(true)
["is_translator"]=>
bool(false)
["description"]=>
string(0) ""
["profile_text_color"]=>
string(6) "333333"
["created_at"]=>
string(30) "Sat Jun 20 06:50:28 +0000 2009"
}
["contributors"]=>
NULL
["coordinates"]=>
NULL
["geo"]=>
NULL
["retweet_count"]=>
int(0)
["favorited"]=>
bool(false)
["created_at"]=>
string(30) "Sat Dec 08 06:28:19 +0000 2012"
["in_reply_to_user_id_str"]=>
NULL
["truncated"]=>
bool(false)
["in_reply_to_screen_name"]=>
NULL
["retweeted"]=>
bool(false)
["text"]=>
string(29) "Sat, 08 Dec 12 06:28:18 +0000"
["place"]=>
NULL
["source"]=>
string(65) "<a href="http://www.europe-zone.com" rel="nofollow">Madscore1</a>"
["id_str"]=>
string(18) "277298543398617088"
["in_reply_to_user_id"]=>
NULL
["in_reply_to_status_id"]=>
NULL
["id"]=>
float(2.7729854339862E+17)
}
[8]=>
object(stdClass)#23 (19) {
["user"]=>
object(stdClass)#24 (37) {
["id"]=>
int(48948037)
["default_profile_image"]=>
bool(false)
["followers_count"]=>
int(9)
["following"]=>
bool(false)
["url"]=>
NULL
["favourites_count"]=>
int(0)
["profile_background_image_url_https"]=>
string(71) "https://si0.twimg.com/profile_background_images/422730827/photo__1_.JPG"
["profile_sidebar_border_color"]=>
string(6) "A8C7F7"
["utc_offset"]=>
int(-28800)
["profile_background_tile"]=>
bool(true)
["name"]=>
string(16) "Semirindi Makala"
["id_str"]=>
string(8) "48948037"
["is_translator"]=>
bool(false)
["profile_sidebar_fill_color"]=>
string(6) "CCD7DB"
["screen_name"]=>
string(7) "MASE_85"
["protected"]=>
bool(false)
["profile_image_url"]=>
string(66) "http://a0.twimg.com/profile_images/1821098433/photo__1__normal.JPG"
["location"]=>
string(13) "Teh internets"
["contributors_enabled"]=>
bool(false)
["default_profile"]=>
bool(false)
["time_zone"]=>
string(26) "Pacific Time (US & Canada)"
["profile_image_url_https"]=>
string(68) "https://si0.twimg.com/profile_images/1821098433/photo__1__normal.JPG"
["profile_background_color"]=>
string(3) "fff"
["geo_enabled"]=>
bool(false)
["notifications"]=>
bool(false)
["follow_request_sent"]=>
bool(false)
["listed_count"]=>
int(1)
["lang"]=>
string(2) "en"
["profile_background_image_url"]=>
string(69) "http://a0.twimg.com/profile_background_images/422730827/photo__1_.JPG"
["verified"]=>
bool(false)
["profile_link_color"]=>
string(6) "0084B4"
["profile_use_background_image"]=>
bool(true)
["friends_count"]=>
int(15)
["description"]=>
string(0) ""
["statuses_count"]=>
int(51)
["profile_text_color"]=>
string(6) "333333"
["created_at"]=>
string(30) "Sat Jun 20 06:50:28 +0000 2009"
}
["contributors"]=>
NULL
["coordinates"]=>
NULL
["geo"]=>
NULL
["retweet_count"]=>
int(0)
["favorited"]=>
bool(false)
["created_at"]=>
string(30) "Sat Dec 08 06:27:07 +0000 2012"
["truncated"]=>
bool(false)
["in_reply_to_screen_name"]=>
NULL
["in_reply_to_status_id_str"]=>
NULL
["in_reply_to_user_id_str"]=>
NULL
["retweeted"]=>
bool(false)
["text"]=>
string(29) "Sat, 08 Dec 12 06:27:07 +0000"
["place"]=>
NULL
["source"]=>
string(65) "<a href="http://www.europe-zone.com" rel="nofollow">Madscore1</a>"
["id_str"]=>
string(18) "277298243392643072"
["in_reply_to_user_id"]=>
NULL
["in_reply_to_status_id"]=>
NULL
["id"]=>
float(2.7729824339264E+17)
}
[9]=>
object(stdClass)#25 (19) {
["user"]=>
object(stdClass)#26 (37) {
["id"]=>
int(48948037)
["followers_count"]=>
int(9)
["profile_image_url_https"]=>
string(68) "https://si0.twimg.com/profile_images/1821098433/photo__1__normal.JPG"
["following"]=>
bool(false)
["url"]=>
NULL
["profile_sidebar_border_color"]=>
string(6) "A8C7F7"
["utc_offset"]=>
int(-28800)
["default_profile"]=>
bool(false)
["profile_background_tile"]=>
bool(true)
["name"]=>
string(16) "Semirindi Makala"
["id_str"]=>
string(8) "48948037"
["profile_sidebar_fill_color"]=>
string(6) "CCD7DB"
["screen_name"]=>
string(7) "MASE_85"
["protected"]=>
bool(false)
["profile_image_url"]=>
string(66) "http://a0.twimg.com/profile_images/1821098433/photo__1__normal.JPG"
["location"]=>
string(13) "Teh internets"
["contributors_enabled"]=>
bool(false)
["listed_count"]=>
int(1)
["time_zone"]=>
string(26) "Pacific Time (US & Canada)"
["is_translator"]=>
bool(false)
["profile_background_color"]=>
string(3) "fff"
["geo_enabled"]=>
bool(false)
["notifications"]=>
bool(false)
["follow_request_sent"]=>
bool(false)
["lang"]=>
string(2) "en"
["profile_background_image_url"]=>
string(69) "http://a0.twimg.com/profile_background_images/422730827/photo__1_.JPG"
["friends_count"]=>
int(15)
["statuses_count"]=>
int(50)
["verified"]=>
bool(false)
["profile_link_color"]=>
string(6) "0084B4"
["default_profile_image"]=>
bool(false)