嗨,我想從一個JSON文件中的內容,但我不能,我有許多麻煩做到這一點,我的代碼是:問題越來越JSON內容
<?PHP
$url = 'http://www.taringa.net/api/efc6d445985d5c38c5515dfba8b74e74/json/Users-GetUserData/apptastico';
$ch = curl_init();
$timeout = 0; // set to zero for no timeout
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch); // take out the spaces of curl statement!!
curl_close($ch);
var_dump($file_contents);
?>
如果我把地址在瀏覽器中我得到的內容沒有任何問題,但如果我嘗試在PHP或其他代碼上獲得它,我有問題,我該怎麼辦?我嘗試使用file_get_contents();但我沒有得到任何東西,只有問題和問題
定義術語_issues_ – 2011-06-09 05:30:12
您是否收到一些錯誤? – Ibu 2011-06-09 05:35:03
是的,我得到了:403 - 禁止 – ozonostudio 2011-06-13 18:47:07