php 文件_获取_内容当url不存在时

yruzcnhs  于 2023-01-16  发布在  PHP
关注(0)|答案(8)|浏览(149)

我使用file_get_contents()访问一个URL。

file_get_contents('http://somenotrealurl.com/notrealpage');

如果URL不是真实的,它会返回这个错误信息。我怎样才能让它正常地出错,这样我就知道这个页面不存在,并在不显示这个错误信息的情况下采取相应的行动?

file_get_contents('http://somenotrealurl.com/notrealpage') 
[function.file-get-contents]: 
failed to open stream: HTTP request failed! HTTP/1.0 404 Not Found 
in myphppage.php on line 3

例如,在zend中,你可以说:if ($request->isSuccessful())

$client = New Zend_Http_Client();
$client->setUri('http://someurl.com/somepage');

$request = $client->request();

if ($request->isSuccessful()) {
 //do stuff with the result
}
at0kjp5o

at0kjp5o1#

您需要检查HTTP response code

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') != "200"){
    echo "error";
}else{
    file_get_contents('http://somenotrealurl.com/notrealpage');
}
mctunoxg

mctunoxg2#

对于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
}
11dmarpk

11dmarpk3#

每次使用http Package 器调用file_get_contents时,都会创建一个局部作用域中的变量:$http_response_header
此变量包含所有HTTP头。此方法优于get_headers()函数,因为只执行一个请求。
注意:两个不同的请求可能以不同的方式结束。例如,get_headers()将返回503,file_get_contents()将返回200。您将获得正确的输出,但由于get_headers()调用中的503错误而无法使用它。

function getUrl($url) {
    $content = file_get_contents($url);
    // you can add some code to extract/parse response number from first header. 
    // For example from "HTTP/1.1 200 OK" string.
    return array(
            'headers' => $http_response_header,
            'content' => $content
        );
}

// Handle 40x and 50x errors
$response = getUrl("http://example.com/secret-message");
if ($response['content'] === FALSE)
    echo $response['headers'][0];   // HTTP/1.1 401 Unauthorized
else
    echo $response['content'];

这种方法还允许您跟踪存储在不同变量中的几个请求头,因为如果您使用file_get_contents(),$http_response_header将在局部范围内被覆盖。

rggaifut

rggaifut4#

虽然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);
}
2q5ifsrm

2q5ifsrm5#

简单实用(易于在任何地方使用):

function file_contents_exist($url, $response_code = 200)
{
    $headers = get_headers($url);

    if (substr($headers[0], 9, 3) == $response_code)
    {
        return TRUE;
    }
    else
    {
        return FALSE;
    }
}
    • 示例:**
$file_path = 'http://www.google.com';

if(file_contents_exist($file_path))
{
    $file = file_get_contents($file_path);
}
zvokhttg

zvokhttg6#

为了避免Orblingynh的回答的重复请求,您可以合并他们的回答。如果您在第一时间得到有效的回答,请使用它。如果没有找到问题所在(如果需要)。

$urlToGet = 'http://somenotrealurl.com/notrealpage';
$pageDocument = @file_get_contents($urlToGet);
if ($pageDocument === false) {
     $headers = get_headers($urlToGet);
     $responseCode = substr($headers[0], 9, 3);
     // Handle errors based on response code
     if ($responseCode == '404') {
         //do something, page is missing
     }
     // Etc.
} else {
     // Use $pageDocument, echo or whatever you are doing
}
cig3rfwq

cig3rfwq7#

您可以将'ignore_errors' =〉true添加到选项中:

$options = [
    'http' => [
        'ignore_errors' => true,
        'header' => "Content-Type: application/json\r\n",
    ],
];
$context = stream_context_create($options);
$result = file_get_contents('http://example.com', false, $context);

在这种情况下,您将能够从服务器读取响应。

laik7k3q

laik7k3q8#

$url = 'https://www.yourdomain.com';

正常

function checkOnline($url) {
    $headers = get_headers($url);
    $code = substr($headers[0], 9, 3);
    if ($code == 200) {
        return true;
    }
    return false;
}

if (checkOnline($url)) {
    // URL is online, do something..
    $getURL = file_get_contents($url);     
} else {
    // URL is offline, throw an error..
}

赞成

if (substr(get_headers($url)[0], 9, 3) == 200) {
    // URL is online, do something..
}

权重级别

(substr(get_headers($url)[0], 9, 3) == 200) ? echo 'Online' : echo 'Offline';

相关问题