php - 直接访问链接有数据,CURL GET 一片空白
阿神
阿神 2017-04-11 09:46:43
0
1
819

$url='http://114.215.198.210:8081/a...';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // 要求结果为字符串且输出到屏幕上
curl_setopt($ch, CURLOPT_HEADER, 0); // 不要http header 加快效率
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
echo $output = curl_exec($ch);
curl_close($ch);

阿神
阿神

闭关修行中......

reply all (1)
PHPzhong

我试了下怎么没问题:

➜ /tmp php test.php {"status":"0","msg":"操作成功","result":{"locationTimeStamp":1468311789000,"address":"广东省深圳市南山区高新南三道靠近真功夫(南山科技园店)","stepValue":0,"calory":0,"distance":0,"radius":70,"deviceId":"666666666666675","battery":66,"positionType":2,"lat":22.538201,"lng":113.952924},"timestamp":1470463701045}%

test.php就是你帖的代码:

    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!