Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我收到的错误消息:
警告:file_get_contents(http://example.com/.../asoplayhd2.jpg) [function.file-get-contents]:打开流失败:HTTP 请求失败!在/home/dttrading/qtech.sk/static/agem_images_download.php第40行
有什么方法可以找到有关请求失败原因的更多信息?
尝试使用卷曲
$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);