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
}
_
HTTP応答コード を確認する必要があります。
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');
}
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
}
Httpラッパーを使用して_file_get_contents
_を呼び出すたびに、ローカルスコープの変数が作成されます。 $ http_response_header
この変数には、すべてのHTTPヘッダーが含まれます。このメソッドは、1つの要求のみが実行されるため、get_headers()
関数よりも優れています。
注:2つの異なる要求が異なる方法で終了する場合があります。たとえば、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 をローカルスコープで使用すると上書きされるため、このアプローチにより、異なる変数に格納されたいくつかのリクエストヘッダーを追跡することができます。
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);
}
シンプルで機能的(どこでも使いやすい):
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);
}
ynh の答えに対して Orbling でコメントされているような二重リクエストを避けるために、それらの答えを組み合わせることができます。最初に有効な応答を受け取った場合は、それを使用してください。問題が何であるかがわからない場合(必要な場合)。
$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
}
$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..
}
WTFレベル
(substr(get_headers($url)[0], 9, 3) == 200) ? echo 'Online' : echo 'Offline';
オプションに 'ignore_errors' => trueを追加できます:
$options = array(
'http' => array(
'ignore_errors' => true,
'header' => "Content-Type: application/json\r\n"
)
);
$context = stream_context_create($options);
$result = file_get_contents('http://example.com', false, $context);
その場合、サーバーからの応答を読み取ることができます。