如何从php或javascript中的gowalla url获取内容? 像这样: http://api.gowalla.com/spots?lat=30.2697&lng=-97.7494&radius=50
答案 0 :(得分:0)
尝试使用这些功能:
使用cURL
function get_data($ url) { $ ch = curl_init(); $ timeout = 5; curl_setopt($ CH,CURLOPT_URL,$网址); curl_setopt($ CH,CURLOPT_RETURNTRANSFER,1); curl_setopt($ CH,CURLOPT_CONNECTTIMEOUT,$超时); $ data = curl_exec($ ch); curl_close($ CH); 返回$ data; }
$ returned_content = get_data('http://api.gowalla.com/spots?lat=30.2697&lng=-97.7494&radius=50');
$ url =“http://api.gowalla.com/spots?lat=30.2697&lng=-97.7494&radius=50”; $ str = file_get_contents($ url);
您也可以使用以下网址提供帮助:http://nadeausoftware.com/articles/2007/06/php_tip_how_get_web_page_using_curl