2012-10-13 37 views
0

PHP的新功能,並發現一個可以從Twitter API中檢索JSON數據並將其回顯出來的可靠代碼。下面是檢索@Guardian的用戶照片(報紙)回聲圖像 - PHP和JSON - Twitter的API

<?php 
    $data = json_decode(file_get_contents('https://api.twitter.com/1/users/lookup.json?screen_name=guardian'), true); 
    echo $data[0]['profile_image_url']; 
?> 

對圖像的JSON數據是PHP代碼:

profile_image_url 「:」 http://a0.twimg.com /profile_images/1857791844/G_twittermain_normal.jpg」

所以,很顯然它呼應的URL(文字),我想輸出的實際圖像,可能有超過它的尺寸控制得如果可能的話。

在此先感謝!

+0

?或者想要保存在您的服務器上前調整 – GBD

回答

1

<img src=" <?php echo $data[0]['profile_image_url'];?>" /> 
</body> 

要在HTML顯示圖像
+0

輝煌。謝謝! :D – nowthatsmint

+0

接受回答,以獲得更多的幫助,從stackoverflow人:) –

+1

如果你輸出一個URL到HTML上下文,你必須逃避它。 ' Sven