Solution to PHP reading remote data timeout

*文
Release: 2023-03-18 15:36:02
Original
1617 people have browsed it

How does PHP solve the timeout problem of reading remote data? This article mainly introduces the solution to the timeout of reading remote data by the PHP file_get_contents function. This article directly gives the solution code. I hope to be helpful.

The file_get_contents function often fails to read remote data when the network condition is poor.
The solution is as follows:

/*设置超时配合失败之后尝试多次读取,效果比原先好很多*/
$url = 'http://www.jb51.net';
          $opts = array( 
           'http'=>array( 
          'method'=>"GET", 
          'timeout'=>1, //设置超时
  ) 
 ); 
 $context = stream_context_create($opts); 
 $contents = @file_get_contents($url,false,$context); 
?>
Copy after login

Related recommendations:

Detailed explanation of php file reading series methods

PHP file reading fread, fgets, fgetc, file_get_contents and file function usage example code

Simple Introduction to PHP file lock and process lock

The above is the detailed content of Solution to PHP reading remote data timeout. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!