-1

突然间我的 php 文件得到了一个 503 错误。有人知道为什么吗?还有其他方法吗?

php $URL = "http://www.website.com/foo.html"; 
$a =file_get_contents("$URL"); echo ($a); 
4

2 回答 2

3

溶胶 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);
}
于 2013-04-12T06:06:37.627 回答
0

你确定你有一个正确的网址吗?HTTP-Code 503 是“服务暂时不可用”的代码。也许用功能检查它get_headers($url);

于 2013-04-12T06:08:41.897 回答