突然我的PHP文件得到了給我一個503錯誤。可以有人知道爲什麼,是否有另一種方法。Php文件得到停止工作
php $URL = "http://www.website.com/foo.html";
$a =file_get_contents("$URL"); echo ($a);
突然我的PHP文件得到了給我一個503錯誤。可以有人知道爲什麼,是否有另一種方法。Php文件得到停止工作
php $URL = "http://www.website.com/foo.html";
$a =file_get_contents("$URL"); echo ($a);
溶膠1:
function get_http_response_code($url) {
$headers = get_headers($url);
return substr($headers[0], 9, 3);
}
if(get_http_response_code('http://somenotrealurl.com/notrealpage') != "404"){
file_get_contents('http://somenotrealurl.com/notrealpage');
}else{
echo "error";
}
溶膠2:
隨着PHP這樣的命令,你可以用@前綴它們抑制這種警告。如果發生故障
@file_get_contents('http://somenotrealurl.com/notrealpage');
file_get_contents()
返回FALSE,所以如果你覈對返回的結果,那麼你可以處理失敗
$pageDocument = @file_get_contents('http://somenotrealurl.com/notrealpage');
if ($pageDocument === false) {
// Handle error
}
溶膠3:
雖然的file_get_contents非常簡潔和方便,我傾向於更好地控制Curl庫。這是一個例子。
function fetchUrl($uri) {
$handle = curl_init();
curl_setopt($handle, CURLOPT_URL, $uri);
curl_setopt($handle, CURLOPT_POST, false);
curl_setopt($handle, CURLOPT_BINARYTRANSFER, false);
curl_setopt($handle, CURLOPT_HEADER, true);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
curl_setopt($handle, CURLOPT_CONNECTTIMEOUT, 10);
$response = curl_exec($handle);
$hlength = curl_getinfo($handle, CURLINFO_HEADER_SIZE);
$httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE);
$body = substr($response, $hlength);
// If HTTP response is not 200, throw exception
if ($httpCode != 200) {
throw new Exception($httpCode);
}
return $body;
}
$url = 'http://some.host.com/path/to/doc';
try {
$response = fetchUrl($url);
} catch (Exception $e) {
error_log('Fetch URL failed: ' . $e->getMessage() . ' for ' . $url);
}
感謝您的幫助。 – meandme
您可以將答案標記爲已接受,如果是。 –
你確定,你有一個正確的網址? HTTP代碼503是「服務暫時不可用」的代碼。 也許用函數檢查get_headers($url);
文件有多大? –