0

这是我收到的错误消息:

警告:file_get_contents(http://example.com/.../asoplayhd2.jpg) [function.file-get-contents]:打开流失败:HTTP 请求失败!在/home/dttrading/qtech.sk/static/agem_images_download.php40行

有什么方法可以找到有关请求失败原因的更多信息?

4

1 回答 1

0

尝试使用卷曲

$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, false);
curl_exec($ch);

curl_close($ch);
于 2013-01-10T13:24:07.340 回答