File get contents get last error

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)

file_get_contentsReads entire file into a string

Description

file_get_contents(
    string $filename,
    bool $use_include_path = false,
    ?resource $context = null,
    int $offset = 0,
    ?int $length = null
): string|false

file_get_contents() is the preferred way to read the
contents of a file into a string. It will use memory mapping techniques if
supported by your OS to enhance performance.

Note:

If you’re opening a URI with special characters, such as spaces, you
need to encode the URI with urlencode().

Parameters

filename

Name of the file to read.

use_include_path

Note:

The FILE_USE_INCLUDE_PATH constant can be used
to trigger include path
search.
This is not possible if strict typing
is enabled, since FILE_USE_INCLUDE_PATH is an
int. Use true instead.

context

A valid context resource created with
stream_context_create(). If you don’t need to use a
custom context, you can skip this parameter by null.

offset

The offset where the reading starts on the original stream.
Negative offsets count from the end of the stream.

Seeking (offset) is not supported with remote files.
Attempting to seek on non-local files may work with small offsets, but this
is unpredictable because it works on the buffered stream.

length

Maximum length of data read. The default is to read until end
of file is reached. Note that this parameter is applied to the
stream processed by the filters.

Return Values

The function returns the read data or false on failure.

Warning

This function may
return Boolean false, but may also return a non-Boolean value which
evaluates to false. Please read the section on Booleans for more
information. Use the ===
operator for testing the return value of this
function.

Errors/Exceptions

An E_WARNING level error is generated if filename cannot be found, length
is less than zero, or if seeking to the specified offset in the stream fails.

When file_get_contents() is called on a directory,
an E_WARNING level error is generated on Windows,
and as of PHP 7.4 on other operating systems as well.

Changelog

Version Description
8.0.0 length is nullable now.
7.1.0 Support for negative offsets has been added.

Examples

Example #1 Get and output the source of the homepage of a website


<?php
$homepage
= file_get_contents('http://www.example.com/');
echo
$homepage;
?>

Example #2 Searching within the include_path


<?php
// If strict types are enabled i.e. declare(strict_types=1);
$file = file_get_contents('./people.txt', true);
// Otherwise
$file = file_get_contents('./people.txt', FILE_USE_INCLUDE_PATH);
?>

Example #3 Reading a section of a file


<?php
// Read 14 characters starting from the 21st character
$section = file_get_contents('./people.txt', FALSE, NULL, 20, 14);
var_dump($section);
?>

The above example will output
something similar to:

string(14) "lle Bjori Ro" 

Example #4 Using stream contexts


<?php
// Create a stream
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: enrn" .
"Cookie: foo=barrn"
)
);
$context = stream_context_create($opts);// Open the file using the HTTP headers set above
$file = file_get_contents('http://www.example.com/', false, $context);
?>

Notes

Note: This function is
binary-safe.

Tip

A URL can be used as a
filename with this function if the fopen wrappers have been enabled.
See fopen() for more details on how to specify the
filename. See the Supported Protocols and Wrappers for links to information
about what abilities the various wrappers have, notes on their usage,
and information on any predefined variables they may
provide.

Warning

When using SSL, Microsoft IIS
will violate the protocol by closing the connection without sending a
close_notify indicator. PHP will report this as «SSL: Fatal
Protocol Error» when you reach the end of the data. To work around this, the
value of error_reporting should be
lowered to a level that does not include warnings.
PHP can detect buggy IIS server software when you open
the stream using the https:// wrapper and will suppress the
warning. When using fsockopen() to create an
ssl:// socket, the developer is responsible for detecting
and suppressing this warning.

See Also

  • file() — Reads entire file into an array
  • fgets() — Gets line from file pointer
  • fread() — Binary-safe file read
  • readfile() — Outputs a file
  • file_put_contents() — Write data to a file
  • stream_get_contents() — Reads remainder of a stream into a string
  • stream_context_create() — Creates a stream context
  • $http_response_header

Bart Friederichs

10 years ago


file_get_contents can do a POST, create a context for that first:

<?php

$opts

= array('http' =>

  array(

   
'method'  => 'POST',

   
'header'  => "Content-Type: text/xmlrn".

     
"Authorization: Basic ".base64_encode("$https_user:$https_password")."rn",

   
'content' => $body,

   
'timeout' => 60

 
)

);
$context  = stream_context_create($opts);

$url = 'https://'.$https_server;

$result = file_get_contents($url, false, $context, -1, 40000);
?>


soger

4 months ago


There's barely a mention on this page but the $http_response_header will be populated with the HTTP headers if your file was a link. For example if you're expecting an image you can do this:

<?php
$data
= file_get_contents('https://example.net/some-link');$mimetype = null;
foreach (
$http_response_header as $v) {
    if (
preg_match('/^content-type:s*(image/[^;snr]+)/i', $v, $m)) {
       
$mimetype = $m[1];
    }
}

if (!

$mimetype) {
   
// not an image
}


Anonymous

1 year ago


if the connection is
content-encoding: gzip
and you need to manually ungzip it, this is apparently the key
$c=gzinflate( substr($c,10,-8) );
(stolen from the net)

453034559 at qq dot com

1 year ago


//从指定位置获取指定长度的文件内容
function file_start_length($path,$start=0,$length=null){
    if(!file_exists($path)) return false;
    $size=filesize($path);
    if($start<0) $start+=$size;
    if($length===null) $length=$size-$start;
    return file_get_contents($path, false, null, $start, $length );
}

allenmccabe at gmail dot com

1 year ago


I'm not sure why @jlh was downvoted, but I verified what he reported.

>>> file_get_contents($path false, null, 5, null)
=> ""
>>> file_get_contents($path, false, null, 5, 5)
=> "r/bin"


This blog post is all about how to handle errors from the PHP file_get_contents function, and others which work like it.

The file_get_contents function will read the contents of a file into a string. For example:

<?php
$text = file_get_contents("hello.txt");
echo $text;

You can try this out on the command-line like so:

$ echo "hello" > hello.txt
$ php test.php 
hello

This function is widely used, but I’ve observed that error handling around it is often not quite right. I’ve fixed a few bugs involving incorrect I/O error handling recently, so here are my thoughts on how it should be done.

How file_get_contents fails

For legacy reasons, this function does not throw an exception when something goes wrong. Instead, it will both log a warning, and return false.

<?php
$filename = "not-a-real-file.txt";
$text = file_get_contents($filename);
echo $text;

Which looks like this when you run it:

$ php test.php 
PHP Warning:  file_get_contents(not-a-real-file.txt): failed to open stream: No such file or directory in test.php on line 3
PHP Stack trace:
PHP   1. {main}() test.php:0
PHP   2. file_get_contents() test.php:3

Warnings are not very useful on their own, because the code will continue on without the correct data.

Error handling in four steps

If anything goes wrong when you are reading a file, your code should be throwing some type of Exception which describes the problem. This allows developers to put a try {} catch {} around it, and avoids nasty surprises where invalid data is used later.

Step 1: Detect that the file was not read

Any call to file_get_contents should be immediately followed by a check for that false return value. This is how you know that there is a problem.

<?php
$filename = "not-a-real-file.txt";
$text = file_get_contents($filename);
if($text === false) {
  throw new Exception("File was not loaded");
}
echo $text;

This now gives both a warning and an uncaught exception:

$ php test.php 
PHP Warning:  file_get_contents(not-a-real-file.txt): failed to open stream: No such file or directory in test.php on line 3
PHP Stack trace:
PHP   1. {main}() test.php:0
PHP   2. file_get_contents() test.php:3
PHP Fatal error:  Uncaught Exception: File was not loaded in test.php:5
Stack trace:
#0 {main}
  thrown in test.php on line 5

Step 2: Suppress the warning

Warnings are usually harmless, but there are several good reasons to suppress them:

  • It ensures that you are not depending on a global error handler (or the absence of one) for correct behaviour.
  • The warning might appear in the middle of the output, depending on php.ini.
  • Warnings can produce a lot of noise in the logs

Use @ to silence any warnings from a function call.

<?php
$filename = "not-a-real-file.txt";
$text = @file_get_contents($filename);
if($text === false) {
  throw new Exception("File was not loaded");
}
echo $text;

The output is now only the uncaught Exception:

$ php test.php 
PHP Fatal error:  Uncaught Exception: File was not loaded in test.php:5
Stack trace:
#0 {main}
  thrown in test.php on line 5

Step 3: Get the reason for the failure

Unfortunately, we lost the “No such file or directory” message, which is pretty important information, which should go in the Exception. This information is retrieved from the old-style error_get_last method.

This function might just return empty data, so you should check that everything is set and non-empty before you try to use it.

<?php
$filename = "not-a-real-file.txt";
error_clear_last();
$text = @file_get_contents($filename);
if($text === false) {
  $e = error_get_last();
  $error = (isset($e) && isset($e['message']) && $e['message'] != "") ?
      $e['message'] : "Check that the file exists and can be read.";
  throw new Exception("File '$filename' was not loaded. $error");
}
echo $text;

This now embeds the failure reason directly in the message.

$ php test.php 
PHP Fatal error:  Uncaught Exception: File 'not-a-real-file.txt' was not loaded. file_get_contents(not-a-real-file.txt): failed to open stream: No such file or directory in test.php:9
Stack trace:
#0 {main}
  thrown in test.php on line 9

Step 4: Add a fallback

The last time I introduced error_clear_last()/get_last_error() into a code-base, I learned out that HHVM does not have these functions.

Call to undefined function error_clear_last()

The fix for this is to write some wrapper code, to verify that each function exists.

<?php
$filename = 'not-a-real-file';
clearLastError();
$text = @file_get_contents($filename);
if ($text === false) {
    $error = getLastErrorOrDefault("Check that the file exists and can be read.");
    throw new Exception("Could not retrieve image data from '$filename'. $error");
}
echo $text;

/**
 * Call error_clear_last() if it exists. This is dependent on which PHP runtime is used.
 */
function clearLastError()
{
    if (function_exists('error_clear_last')) {
        error_clear_last();
    }
}
/**
 * Retrieve the message from error_get_last() if possible. This is very useful for debugging, but it will not
 * always exist or return anything useful.
 */
function getLastErrorOrDefault(string $default)
{
    if (function_exists('error_clear_last')) {
        $e = error_get_last();
        if (isset($e) && isset($e['message']) && $e['message'] != "") {
            return $e['message'];
        }
    }
    return $default;
}

This does the same thing as before, but without breaking other PHP runtimes.

$ php test.php 
PHP Fatal error:  Uncaught Exception: Could not retrieve image data from 'not-a-real-file'. file_get_contents(not-a-real-file): failed to open stream: No such file or directory in test.php:7
Stack trace:
#0 {main}
  thrown in test.php on line 7

Since HHVM is dropping support for PHP, I expect that this last step will soon become unnecessary.

How not to handle errors

Some applications put a series of checks before each I/O operation, and then simply perform the operation with no error checking. An example of this would be:

<?php
$filename = "not-a-real-file.txt";
// Check everything!
if(!file_exists($filename)) {
  throw new Exception("$filename does not exist");
}
if(!is_file($filename)) {
  throw new Exception("$filename is not a file");
}
if(!is_readable($filename)) {
  throw new Exception("$filename cannot be read");
}
// Assume that nothing can possibly go wrong..
$text = @file_get_contents($filename);
echo $text;

You could probably make a reasonable-sounding argument that checks are a good idea, but I consider them to be misguided:

  • If you skip any actual error handling, then your code is going to fail in more surprising ways when you encounter an I/O problem that could not be detected.
  • If you do perform correct error handling as well, then the extra checks add nothing other than more branches to test.

Lastly, beware of false positives. For example, the above snippet will reject HTTP URL’s, which are perfectly valid for file_get_contents.

Conclusion

Most PHP code now uses try/catch/finally blocks to handle problems, but the ecosystem really values backwards compatibility, so existing functions are rarely changed.

The style of error reporting used in these I/O functions is by now a legacy quirk, and should be wrapped to consistently throw a useful Exception.

Содержание

  1. file_get_contents
  2. Description
  3. Parameters
  4. Return Values
  5. Errors/Exceptions
  6. Changelog
  7. Examples
  8. Notes
  9. See Also
  10. Handling I/O errors in PHP
  11. How file_get_contents fails
  12. Error handling in four steps
  13. Step 1: Detect that the file was not read
  14. Step 2: Suppress the warning
  15. Step 3: Get the reason for the failure
  16. Step 4: Add a fallback
  17. How not to handle errors
  18. Conclusion
  19. How to handle the warning of file_get_contents() function in PHP ?
  20. Хорошая обработка ошибок с file_get_contents
  21. Обновить
  22. 5 ответы

file_get_contents

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)

file_get_contents — Reads entire file into a string

Description

This function is similar to file() , except that file_get_contents() returns the file in a string , starting at the specified offset up to length bytes. On failure, file_get_contents() will return false .

file_get_contents() is the preferred way to read the contents of a file into a string. It will use memory mapping techniques if supported by your OS to enhance performance.

If you’re opening a URI with special characters, such as spaces, you need to encode the URI with urlencode() .

Parameters

Name of the file to read.

The FILE_USE_INCLUDE_PATH constant can be used to trigger include path search. This is not possible if strict typing is enabled, since FILE_USE_INCLUDE_PATH is an int . Use true instead.

A valid context resource created with stream_context_create() . If you don’t need to use a custom context, you can skip this parameter by null .

The offset where the reading starts on the original stream. Negative offsets count from the end of the stream.

Seeking ( offset ) is not supported with remote files. Attempting to seek on non-local files may work with small offsets, but this is unpredictable because it works on the buffered stream.

Maximum length of data read. The default is to read until end of file is reached. Note that this parameter is applied to the stream processed by the filters.

Return Values

The function returns the read data or false on failure.

This function may return Boolean false , but may also return a non-Boolean value which evaluates to false . Please read the section on Booleans for more information. Use the === operator for testing the return value of this function.

Errors/Exceptions

An E_WARNING level error is generated if filename cannot be found, length is less than zero, or if seeking to the specified offset in the stream fails.

When file_get_contents() is called on a directory, an E_WARNING level error is generated on Windows, and as of PHP 7.4 on other operating systems as well.

Changelog

Version Description
8.0.0 length is nullable now.
7.1.0 Support for negative offset s has been added.

Examples

Example #1 Get and output the source of the homepage of a website

Example #2 Searching within the include_path

Example #3 Reading a section of a file

The above example will output something similar to:

Example #4 Using stream contexts

// Create a stream
$opts = array(
‘http’ =>array(
‘method’ => «GET» ,
‘header’ => «Accept-language: enrn» .
«Cookie: foo=barrn»
)
);

$context = stream_context_create ( $opts );

// Open the file using the HTTP headers set above
$file = file_get_contents ( ‘http://www.example.com/’ , false , $context );
?>

Notes

A URL can be used as a filename with this function if the fopen wrappers have been enabled. See fopen() for more details on how to specify the filename. See the Supported Protocols and Wrappers for links to information about what abilities the various wrappers have, notes on their usage, and information on any predefined variables they may provide.

When using SSL, Microsoft IIS will violate the protocol by closing the connection without sending a close_notify indicator. PHP will report this as «SSL: Fatal Protocol Error» when you reach the end of the data. To work around this, the value of error_reporting should be lowered to a level that does not include warnings. PHP can detect buggy IIS server software when you open the stream using the https:// wrapper and will suppress the warning. When using fsockopen() to create an ssl:// socket, the developer is responsible for detecting and suppressing this warning.

See Also

  • file() — Reads entire file into an array
  • fgets() — Gets line from file pointer
  • fread() — Binary-safe file read
  • readfile() — Outputs a file
  • file_put_contents() — Write data to a file
  • stream_get_contents() — Reads remainder of a stream into a string
  • stream_context_create() — Creates a stream context
  • $http_response_header

Источник

Handling I/O errors in PHP

This blog post is all about how to handle errors from the PHP file_get_contents function, and others which work like it.

The file_get_contents function will read the contents of a file into a string . For example:

You can try this out on the command-line like so:

This function is widely used, but I’ve observed that error handling around it is often not quite right. I’ve fixed a few bugs involving incorrect I/O error handling recently, so here are my thoughts on how it should be done.

How file_get_contents fails

For legacy reasons, this function does not throw an exception when something goes wrong. Instead, it will both log a warning, and return false .

Which looks like this when you run it:

Warnings are not very useful on their own, because the code will continue on without the correct data.

Error handling in four steps

If anything goes wrong when you are reading a file, your code should be throwing some type of Exception which describes the problem. This allows developers to put a try <> catch <> around it, and avoids nasty surprises where invalid data is used later.

Step 1: Detect that the file was not read

Any call to file_get_contents should be immediately followed by a check for that false return value. This is how you know that there is a problem.

This now gives both a warning and an uncaught exception:

Step 2: Suppress the warning

Warnings are usually harmless, but there are several good reasons to suppress them:

  • It ensures that you are not depending on a global error handler (or the absence of one) for correct behaviour.
  • The warning might appear in the middle of the output, depending on php.ini .
  • Warnings can produce a lot of noise in the logs

Use @ to silence any warnings from a function call.

The output is now only the uncaught Exception :

Step 3: Get the reason for the failure

Unfortunately, we lost the “No such file or directory” message, which is pretty important information, which should go in the Exception . This information is retrieved from the old-style error_get_last method.

This function might just return empty data, so you should check that everything is set and non-empty before you try to use it.

This now embeds the failure reason directly in the message.

Step 4: Add a fallback

The last time I introduced error_clear_last() / get_last_error() into a code-base, I learned out that HHVM does not have these functions.

The fix for this is to write some wrapper code, to verify that each function exists.

This does the same thing as before, but without breaking other PHP runtimes.

Since HHVM is dropping support for PHP, I expect that this last step will soon become unnecessary.

How not to handle errors

Some applications put a series of checks before each I/O operation, and then simply perform the operation with no error checking. An example of this would be:

You could probably make a reasonable-sounding argument that checks are a good idea, but I consider them to be misguided:

  • If you skip any actual error handling, then your code is going to fail in more surprising ways when you encounter an I/O problem that could not be detected.
  • If you do perform correct error handling as well, then the extra checks add nothing other than more branches to test.

Lastly, beware of false positives. For example, the above snippet will reject HTTP URL’s, which are perfectly valid for file_get_contents .

Conclusion

Most PHP code now uses try / catch / finally blocks to handle problems, but the ecosystem really values backwards compatibility, so existing functions are rarely changed.

The style of error reporting used in these I/O functions is by now a legacy quirk, and should be wrapped to consistently throw a useful Exception .

Источник

How to handle the warning of file_get_contents() function in PHP ?

The file_get_contents() function in PHP is an inbuilt function which is used to read a file into a string. The function uses memory mapping techniques which are supported by the server and thus enhances the performances making it a preferred way of reading contents of a file.
The path of the file to be read is sent as a parameter to the function and it returns the data read on success and FALSE on failure.

Return Value: It returns the read data on success and FALSE on failure.

Errors And Exception:

  • If you want to open a file with special characters, such as spaces, it needs to be encoded first using urlencode().
  • The file_get_contents() function returns Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE.
  • An E_WARNING level error is generated if filename cannot be found, max length is less than zero, or if seeking to the specified offset in the stream fails.

Examples:

Program 1:

Runtime Errors:

PHP Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: System error in /home/3d11f9784b99e2c83058d5842d5533ce.php on line 5
PHP Warning: file_get_contents(https://www.geeksforgeeks.org/): failed to open stream: php_network_getaddresses: getaddrinfo failed: System error in /home/3d11f9784b99e2c83058d5842d5533ce.php on line 5

Output:

Program 2:

Runtime Errors:

PHP Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: System error in /home/4659aeca06fdba457da0c5d78befb39a.php on line 6
PHP Warning: file_get_contents(gfg.txt): failed to open stream: No such file or directory in /home/4659aeca06fdba457da0c5d78befb39a.php on line 6

Output:

As clearly we can see above runtime errors in the form PHP Warning have occurred which were really unexpected. Here the questions arise of removing these errors, is there a way to handle these errors?
Yes, PHP provides us with a simple solution.

PHP supports one error control operator: the sign (@). When prepended to an expression in PHP, any error messages that might be generated by that expression will be ignored. So, above PHP Warning can be suppressed by simply inserting error control operator(@) before the function call file_get_contents() in the following way:

Источник

Хорошая обработка ошибок с file_get_contents

Я использую простой который имеет эту функцию:

Иногда URL-адрес может быть просто недействительным, и я хочу справиться с этим. Я думал, что могу использовать попытку и поймать, но это не сработало, поскольку оно не генерирует исключение, а просто выдает предупреждение php, подобное этому:

Строка 39 находится в приведенном выше коде.

Как я могу правильно обработать эту ошибку, могу ли я просто использовать простой if условие, не похоже, что оно возвращает логическое значение.

Спасибо всем за любую помощь

Обновить

Это хорошее решение?

почему он вызывается по URL, а не по имени файла? — Your Common Sense

Ну, это хороший вопрос, так что +1 — TheLQ

@Abs Вероятно, это потому, что вы без причины отрицаете все ответы. — NullUserException

@Abs (и Col): Как использование @ и кода возврата менее законно для «обработки ошибок», чем перехват исключения или решение, которое у вас есть в настоящее время в разделе «Хорошее ли это решение?». Только из-за @? — grossvogel

Предлагаемые сторонние альтернативы, которые фактически используют DOM вместо анализа строк: phpQuery, Зенд_Дом, QueryPath и FluentDom. — Gordon

5 ответы

В основном обертка для file_get_contents . Это вызовет исключение в случае сбоя. Чтобы не пришлось переопределять file_get_contents сам, ты можешь

Теперь вы можете:

Подавление ошибок (либо с помощью @ или понизив уровень error_reporting действительный решение. Это может вызывать исключения, и вы можете использовать это для обработки своих ошибок. Есть много причин, почему file_get_contents может генерировать предупреждения, и само руководство по PHP рекомендует снизить значение error_reporting: См. Руководство

ответ дан 07 авг.

Вы можете захватить вывод @file_get_contents. Если это === FALSE, вы можете создать свое собственное исключение, установить код возврата или что-то еще. — гроссфогель

@quantumSoup: имейте в виду, что ваш первый пример if(file_get. выдаст ошибку, если пустой файл будет успешно прочитан, тогда как второй if($contents === false) будет возвращать ошибку только в том случае, если ошибка действительно есть. — гроссфогель

@gross Да, я забыл проверить на идентичность с ложью в первом. Зато выкинул всю первую часть. — QuantumSoup

Странно, кажется, что file_get_contents не любит закодированные URL-адреса. Я удалил это, и, похоже, все работает нормально. — Abs

@Abs Действительно, вы не должны передавать закодированные URL-адреса какой-либо файловой функции PHP — QuantumSoup

Используйте CURL чтобы получить URL-адрес и обработать ответ об ошибке таким образом.

Простой пример из curl_init ():

ответ дан 07 авг.

Итак, идея состоит в том, чтобы сначала проверить URL-адрес, прежде чем передавать его в file_get_contents, я думаю, что это хорошая идея. Я думаю, что лучше использовать fopen. Смотрите мое обновление, что вы думаете? — Abs

Нет, CURL вернет вам содержимое, поэтому в последующем файле file_get_contents не будет необходимости. — Треффиннон

Я не могу использовать CURL или fopen для получения содержимого. Мне все еще нужно использовать file_get_contents, предоставляемый API, мне просто нужно проверить, не вернул ли file_get_contents ошибку, и что-то сделать, если она есть. Опять же, я не могу напрямую возиться с file_get_contents, поскольку он находится в API simplehtmldom, как я уже упоминал в своем вопросе. — Abs

+1 Используйте CURL там, где он доступен, для всех HTTP-запросов. Он для этого предназначен. file_get_contents будет работать (в большинстве случаев), но он не предназначен для HTTP, поэтому будет довольно сложно обнаружить определенные типы ошибок и т. д. — ircmaxell

С моей точки зрения, хорошая обработка ошибок — одна из самых больших проблем в PHP. К счастью, вы можете зарегистрировать свой собственный обработчик ошибок и сами решить, что делать.

Вы можете определить довольно простой обработчик ошибок следующим образом:

и зарегистрируйте его в своей функции следующим образом:

ответ дан 23 апр.

Чтобы понять, почему вызов file_get_contents мог потерпеть неудачу, вы можете просто использовать функцию php error_get_last:

ответ дан 20 авг.

ЕСЛИ вы загружаете данные с внешнего URL-адреса, наилучшей обработкой будет внедрение HTTP-библиотеки, такой как Zend_Http. Это не сильно отличается от использования CURL или fopen, за исключением того, что он будет извлекать сведения об этих «директорах» в универсальный API, а затем вы можете выбрать, что вы хотите использовать. Он также будет иметь некоторые встроенные ловушки ошибок, чтобы упростить вам задачу.

Если вам не нужны накладные расходы на другую библиотеку, вы можете закодировать ее самостоятельно, и в этом случае я всегда предпочитаю CURL.

ответ дан 07 авг.

Не тот ответ, который вы ищете? Просмотрите другие вопросы с метками php error-handling or задайте свой вопрос.

Источник

The file_get_contents() function in PHP is an inbuilt function which is used to read a file into a string. The function uses memory mapping techniques which are supported by the server and thus enhances the performances making it a preferred way of reading contents of a file. 
The path of the file to be read is sent as a parameter to the function and it returns the data read on success and FALSE on failure.

Return Value: It returns the read data on success and FALSE on failure.

Errors And Exception: 

  • If you want to open a file with special characters, such as spaces, it needs to be encoded first using urlencode().
  • The file_get_contents() function returns Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE.
  • An E_WARNING level error is generated if filename cannot be found, max length is less than zero, or if seeking to the specified offset in the stream fails.

Examples:  

Input:  file_get_contents('https://www.geeksforgeeks.org/');
Output: A computer science portal for geeks

Input:  file_get_contents('gfg.txt', FALSE, NULL, 0, 14);
Output: A computer science portal for geeks

Program 1: 

Runtime Errors: 

PHP Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: System error in /home/3d11f9784b99e2c83058d5842d5533ce.php on line 5 
PHP Warning: file_get_contents(https://www.geeksforgeeks.org/): failed to open stream: php_network_getaddresses: getaddrinfo failed: System error in /home/3d11f9784b99e2c83058d5842d5533ce.php on line 5

 
Output: 

It will redirect to GeeksforGeeks Home Page

Program 2: 

PHP

<?php

$text = file_get_contents('gfg.txt',

                  FALSE, NULL, 0, 36);

echo $text;

?>

Runtime Errors: 

PHP Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: System error in /home/4659aeca06fdba457da0c5d78befb39a.php on line 6 
PHP Warning: file_get_contents(gfg.txt): failed to open stream: No such file or directory in /home/4659aeca06fdba457da0c5d78befb39a.php on line 6

 Output: 

It will display the content of gfg.txt file.
For Example: A computer science portal for geeks

As clearly we can see above runtime errors in the form PHP Warning have occurred which were really unexpected. Here the questions arise of removing these errors, is there a way to handle these errors? 
Yes, PHP provides us with a simple solution.

PHP supports one error control operator: the sign (@). When prepended to an expression in PHP, any error messages that might be generated by that expression will be ignored. So, above PHP Warning can be suppressed by simply inserting error control operator(@) before the function call file_get_contents() in the following way:

Updated Program 1:  

PHP

Output: 

It will redirect to GeeksforGeeks Home Page

Updated Program 2: 

PHP

<?php

$text = @file_get_contents('gfg.txt',

                  FALSE, NULL, 0, 36);

echo $text;

?>

Output: 

It will display the content of gfg.txt file.
For Example: A computer science portal for geeks

So, after adding the ‘@’ symbol we can see that all those PHP warnings are suppressed and only output is displayed as above.
Reference: https://www.php.net/manual/en/language.operators.errorcontrol.php
 

file_get_contents

(PHP 4 >= 4.3.0, PHP 5, PHP 7)

file_get_contentsЧитает содержимое файла в строку

Описание

string file_get_contents
( string $filename
[, bool $use_include_path = false
[, resource $context
[, int $offset = -1
[, int $maxlen
]]]] )

Использование функции file_get_contents()
наиболее предпочтительно в случае необходимости получить
содержимое файла целиком, поскольку для улучшения производительности
функция использует технику отображения файла в память
(memory mapping), если она поддерживается вашей операционной системой.

Замечание:

Если вы открываете URI содержащий спецсимволы, такие как пробел,
вам нужно закодировать URI при помощи urlencode().

Список параметров

filename

Имя читаемого файла.

use_include_path

Замечание:

Начиная с версии PHP 5 можно использовать константу
FILE_USE_INCLUDE_PATH для поиска файла
в include path.

context

Корректный ресурс контекста, созданный с помощью функции
stream_context_create(). Если в использовании
особого контекста нет необходимости, можно пропустить этот параметр
передав в него значение NULL.

offset

Смещение, с которого начнется чтение оригинального потока.

Поиск смещения (offset) не поддерживается при
работе с удаленными файлами. Попытка поиска смещения на нелокальных
файлах может работать при небольших смещениях, но этот
результат является непредсказуемым, так как он работает на
буферизованном потоке.

maxlen

Максимальный размер читаемых данных. По умолчанию чтение
осуществляется пока не будет достигнут конец файла. Учтите, что
этот параметр применяется и к потоку с фильтрами.

Возвращаемые значения

Функция возвращает прочтенные данные или FALSE в случае возникновения ошибки.

Внимание

Эта функция
может возвращать как boolean FALSE, так и не-boolean значение,
которое приводится к FALSE. За более подробной информацией обратитесь к разделу
Булев тип. Используйте оператор === для проверки значения,
возвращаемого этой функцией.

Ошибки

Будет сгенерирована ошибка уровня E_WARNING, если
параметр filename не удается найти,
параметр maxlength меньше нуля или
поиск по смещению offset в потоке завершается неудачно.

Примеры

Пример #1 Получить и вывести исходный код домашней страницы вебсайта


<?php
$homepage 
file_get_contents('http://www.example.com/');
echo 
$homepage;
?>

Пример #2 Поиск файлов в include_path


<?php
// <= PHP 5
$file file_get_contents('./people.txt'true);
// > PHP 5
$file file_get_contents('./people.txt'FILE_USE_INCLUDE_PATH);
?>

Пример #3 Чтение секции файла


<?php
// Читаем 14 символов, начиная с 21 символа
$section file_get_contents('./people.txt'NULLNULL2014);
var_dump($section);
?>

Результатом выполнения данного примера
будет что-то подобное:

string(14) "lle Bjori Ro"

Пример #4 Использование потоковых контекстов


<?php
// Создаем поток
$opts = array(
  
'http'=>array(
    
'method'=>"GET",
    
'header'=>"Accept-language: enrn" .
              
"Cookie: foo=barrn"
  
)
);
$context stream_context_create($opts);// Открываем файл с помощью установленных выше HTTP-заголовков
$file file_get_contents('http://www.example.com/'false$context);
?>

Список изменений

Версия Описание
5.1.0 Добавлены аргументы offset и
maxlen.

Примечания

Замечание: Эта функция безопасна
для обработки данных в двоичной форме.

Подсказка

Для этой функции вы можете использовать URL
в качестве имени файла, если была включена опция fopen wrappers. Смотрите более
подробную информацию об определении имени файла в описании функции
fopen(). Смотрите также список поддерживаемых оберток URL, их возможности, замечания по использованию и список
предопределенных констант в Поддерживаемые протоколы и обработчики (wrappers).

Внимание

При использовании SSL,
Microsoft IIS нарушает протокол, закрывая соединение без отправки
индикатора close_notify. PHP сообщит об этом как «SSL: Fatal Protocol Error»
в тот момент, когда вы достигнете конца данных. Чтобы обойти это, вы должны
установить error_reporting на
уровень, исключающий E_WARNING.
PHP версий 4.3.7 и старше умеет определять, что на стороне сервера находится
проблемный IIS при открытии потока с помощью обертки https:// и не выводит предупреждение.
Если вы используете fsockopen() для создания ssl:// сокета,
вы сами отвечаете за определение и подавление этого предупреждения.

Смотрите также

  • file() — Читает содержимое файла и помещает его в массив
  • fgets() — Читает строку из файла
  • fread() — Бинарно-безопасное чтение файла
  • readfile() — Выводит файл
  • file_put_contents() — Пишет строку в файл
  • stream_get_contents() — Читает оставшуюся часть потока в строку
  • stream_context_create() — Создаёт контекст потока
  • $http_response_header

Вернуться к: Файловая система

I wrote a PHP code like this

$site="http://www.google.com";
$content = file_get_content($site);
echo $content;

But when I remove «http://» from $site I get the following warning:

Warning: file_get_contents(www.google.com) [function.file-get-contents]: failed to open stream:

I tried try and catch but it didn’t work.







Apr 7, 2020


in PHP


by



• 37,510 points





8,653 views



1 answer to this question.

Hello @kartik,

This is fairly simple:

if (!$data = file_get_contents("http://www.google.com")) {
      $error = error_get_last();
      echo "HTTP request failed. Error was: " . $error['message'];
} else {
      echo "Everything went better than expected";
}

I found this after experimenting with the try/catch from @enobrev above, but this allows for less lengthy (and IMO, more readable) code. We simply use error_get_last to get the text of the last error, and file_get_contents returns false on failure, so a simple «if» can catch that.

Thank you!!






answered

Apr 7, 2020


by
Niroj


• 82,840 points



Related Questions In PHP

  • All categories

  • ChatGPT
    (4)

  • Apache Kafka
    (84)

  • Apache Spark
    (596)

  • Azure
    (131)

  • Big Data Hadoop
    (1,907)

  • Blockchain
    (1,673)

  • C#
    (141)

  • C++
    (271)

  • Career Counselling
    (1,060)

  • Cloud Computing
    (3,446)

  • Cyber Security & Ethical Hacking
    (147)

  • Data Analytics
    (1,266)

  • Database
    (855)

  • Data Science
    (75)

  • DevOps & Agile
    (3,575)

  • Digital Marketing
    (111)

  • Events & Trending Topics
    (28)

  • IoT (Internet of Things)
    (387)

  • Java
    (1,247)

  • Kotlin
    (8)

  • Linux Administration
    (389)

  • Machine Learning
    (337)

  • MicroStrategy
    (6)

  • PMP
    (423)

  • Power BI
    (516)

  • Python
    (3,188)

  • RPA
    (650)

  • SalesForce
    (92)

  • Selenium
    (1,569)

  • Software Testing
    (56)

  • Tableau
    (608)

  • Talend
    (73)

  • TypeSript
    (124)

  • Web Development
    (3,002)

  • Ask us Anything!
    (66)

  • Others
    (1,947)

  • Mobile Development
    (263)

Subscribe to our Newsletter, and get personalized recommendations.

Already have an account? Sign in.

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)

file_get_contentsЧитает содержимое файла в строку

Описание

file_get_contents(
    string $filename,
    bool $use_include_path = false,
    ?resource $context = null,
    int $offset = 0,
    ?int $length = null
): string|false

Использование функции file_get_contents()
наиболее предпочтительно в случае необходимости получить
содержимое файла целиком, поскольку для улучшения производительности
функция использует технику отображения файла в память
(memory mapping), если она поддерживается вашей операционной системой.

Замечание:

Если вы открываете URI, содержащий спецсимволы, такие как пробел,
вам нужно закодировать URI при помощи urlencode().

Список параметров

filename

Имя читаемого файла.

use_include_path

Замечание:

Можно использовать константу
FILE_USE_INCLUDE_PATH для поиска файла
в include path.
Только помните, что если вы используете строгую типизацию,
то так сделать не получится, поскольку
FILE_USE_INCLUDE_PATH имеет тип int.
В таком случае используйте true.

context

Корректный ресурс контекста, созданный с помощью функции
stream_context_create(). Если в использовании
особого контекста нет необходимости, можно пропустить этот параметр
передав в него значение null.

offset

Смещение, с которого начнётся чтение оригинального потока.
Отрицательное значение смещения будет отсчитываться с конца потока.

Поиск смещения (offset) не поддерживается при
работе с удалёнными файлами. Попытка поиска смещения на нелокальных
файлах может работать при небольших смещениях, но результат будет
непредсказуемым, так как функция работает на буферизованном потоке.

length

Максимальный размер читаемых данных. По умолчанию чтение
осуществляется пока не будет достигнут конец файла. Учтите, что
этот параметр применяется и к потоку с фильтрами.

Возвращаемые значения

Функция возвращает прочтённые данные или false в случае возникновения ошибки.

Внимание

Эта функция может возвращать как логическое значение false, так и значение не типа boolean, которое приводится к false. За более подробной информацией обратитесь к разделу Булев тип. Используйте оператор === для проверки значения, возвращаемого этой функцией.

Ошибки

Будет сгенерирована ошибка уровня E_WARNING в случаях,
если не удастся найти filename, задан length
меньше нуля, или поиск по смещению offset в потоке
завершится неудачно.

Когда file_get_contents() вызывается в каталоге,
в Windows ошибка генерируется E_WARNING,
а с PHP 7.4 также в других операционных системах.

Список изменений

Версия Описание
8.0.0 Параметр length теперь допускает значение null.
7.1.0 Добавлена поддержка отрицательных значений offset.

Примеры

Пример #1 Получить и вывести исходный код домашней страницы сайта


<?php
$homepage
= file_get_contents('http://www.example.com/');
echo
$homepage;
?>

Пример #2 Поиск файлов в include_path


<?php
// Если включены строгие типы, то есть объявлено (strict_types=1);
$file = file_get_contents('./people.txt', true);
// Иначе
$file = file_get_contents('./people.txt', FILE_USE_INCLUDE_PATH);
?>

Пример #3 Чтение секции файла


<?php
// Читаем 14 символов, начиная с 21 символа
$section = file_get_contents('./people.txt', FALSE, NULL, 20, 14);
var_dump($section);
?>

Результатом выполнения данного примера
будет что-то подобное:

string(14) "lle Bjori Ro"

Пример #4 Использование потоковых контекстов


<?php
// Создаём поток
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: enrn" .
"Cookie: foo=barrn"
)
);
$context = stream_context_create($opts);// Открываем файл с помощью установленных выше HTTP-заголовков
$file = file_get_contents('http://www.example.com/', false, $context);
?>

Примечания

Замечание: Эта функция безопасна для обработки данных в двоичной форме.

Подсказка

Для этой функции вы можете использовать URL в качестве имени файла, если была включена опция fopen wrappers. Смотрите более подробную информацию об определении имени файла в описании функции fopen(). Смотрите также список поддерживаемых обёрток URL, их возможности, замечания по использованию и список предопределённых констант в разделе Поддерживаемые протоколы и обёртки.

Внимание

При использовании SSL, Microsoft IIS нарушает протокол, закрывая соединение без отправки индикатора close_notify. PHP сообщит об этом как «SSL: Fatal Protocol Error» в тот момент, когда вы достигнете конца данных. Чтобы обойти это, вы должны установить error_reporting на уровень, исключающий E_WARNING. PHP умеет определять, что на стороне сервера находится проблемный IIS при открытии потока с помощью обёртки https:// и не выводит предупреждение. Если вы используете fsockopen() для создания ssl:// сокета, вы сами отвечаете за определение и подавление этого предупреждения.

Смотрите также

  • file() — Читает содержимое файла и помещает его в массив
  • fgets() — Читает строку из файла
  • fread() — Бинарно-безопасное чтение файла
  • readfile() — Выводит файл
  • file_put_contents() — Пишет данные в файл
  • stream_get_contents() — Читает оставшуюся часть потока в строку
  • stream_context_create() — Создаёт контекст потока
  • $http_response_header

Bart Friederichs

10 years ago


file_get_contents can do a POST, create a context for that first:

<?php

$opts

= array('http' =>

  array(

   
'method'  => 'POST',

   
'header'  => "Content-Type: text/xmlrn".

     
"Authorization: Basic ".base64_encode("$https_user:$https_password")."rn",

   
'content' => $body,

   
'timeout' => 60

 
)

);
$context  = stream_context_create($opts);

$url = 'https://'.$https_server;

$result = file_get_contents($url, false, $context, -1, 40000);
?>


soger

4 months ago


There's barely a mention on this page but the $http_response_header will be populated with the HTTP headers if your file was a link. For example if you're expecting an image you can do this:

<?php
$data
= file_get_contents('https://example.net/some-link');$mimetype = null;
foreach (
$http_response_header as $v) {
    if (
preg_match('/^content-type:s*(image/[^;snr]+)/i', $v, $m)) {
       
$mimetype = $m[1];
    }
}

if (!

$mimetype) {
   
// not an image
}


Anonymous

1 year ago


if the connection is
content-encoding: gzip
and you need to manually ungzip it, this is apparently the key
$c=gzinflate( substr($c,10,-8) );
(stolen from the net)

453034559 at qq dot com

1 year ago


//从指定位置获取指定长度的文件内容
function file_start_length($path,$start=0,$length=null){
    if(!file_exists($path)) return false;
    $size=filesize($path);
    if($start<0) $start+=$size;
    if($length===null) $length=$size-$start;
    return file_get_contents($path, false, null, $start, $length );
}

allenmccabe at gmail dot com

1 year ago


I'm not sure why @jlh was downvoted, but I verified what he reported.

>>> file_get_contents($path false, null, 5, null)
=> ""
>>> file_get_contents($path, false, null, 5, 5)
=> "r/bin"


Понравилась статья? Поделить с друзьями:

Читайте также:

  • Firewall cmd error unrecognized arguments
  • File game sii can not be decoded error unknown format
  • Finale как изменить инструмент
  • Fifa online 4 xigncode system enter error code e0191009
  • Final result installation failed with error code 0x80096005

  • 0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

    0 комментариев
    Старые
    Новые Популярные
    Межтекстовые Отзывы
    Посмотреть все комментарии