我正在尝试从此链接卷曲 json:http ://web-app.usc.edu/ws/soc/api/departments/20131
我试过了:
文件获取内容:
$json = file_get_contents("http://web-app.usc.edu/ws/soc/api/departments/20131");
卷曲:
$ch = curl_init('http://web-app.usc.edu/ws/soc/api/departments/20131');
$response = curl_exec($ch);
但是 file_get_contents “无法打开流”并且 curl 似乎挂起。有趣的是,在终端中卷曲 url 效果很好。
怎么了?