2013-01-10 64 views
0

更多信息這是錯誤消息我得到:如何獲得有關失敗請求

警告:的file_get_contents(http://example.com/.../asoplayhd2.jpg)function.file-獲取內容]:未能打開流:HTTP請求失敗!在上線/home/dttrading/qtech.sk/static/agem_images_download.php

有沒有辦法找出爲什麼請求失敗的更多信息?

+0

你有什麼需要嗎? – wildhaber

+0

如果遇到超時或連接被拒絕 –

回答

0

嘗試使用curl

$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);