file_get_contents 函数添加超时设置
我们知道,在 php.ini 中,有一个参数 max_execution_time 可以设置 PHP 脚本的最大执行时间,但是,在 php-cgi(php-fpm) 中,该参数不会起效。真正能够控制 PHP 脚本最大执行时间的是 php-fpm.conf 配置文件中的以下参数:
C代码
The timeout (in seconds) for serving a single request after which the worker process will be terminated
Should be used when 'max_execution_time' ini option does not stop script execution for some reason
'0s' means 'off'
<value name="request_terminate_timeout">0s</value>
默认值为 0 秒,也就是说,PHP 脚本会一直执行下去。这样,当所有的 php-cgi 进程都卡在 file_get_contents() 函数时,这台 WebServer 已经无法再处理新的 PHP 请求了修改该参数,设置一个 PHP 脚本最大执行时间是必要的,但是,治标不治本。例如改成 <value name="request_terminate_timeout">30s</value>,如果发生 file_get_contents() 获取网页内容较慢的情况,这就意味着 150 个 php-cgi 进程,每秒钟只能处理 5 个请求,WebServer 同样很难避免“502 Bad Gateway”。
要做到彻底解决,只能让 PHP 程序员们改掉直接使用 file_get_contents("http://example.com/") 的习惯,而是稍微修改一下,加个超时时间,用以下方式来实现 HTTP GET 请求。要是觉得麻烦,可以自行将以下代码封装成一个函数。
<?php $ctx = stream_context_create(array( 'http' => array( 'timeout' => 1 //设置一个超时时间,单位为秒 ) ) ); file_get_contents("http://example.com/", 0, $ctx); ?>
下一篇: php根本的验证码
推荐阅读
-
PHP file_get_contents设置超时处理方法_PHP
-
PHP file_get_contents函数读取远程数据超时的解决方法,c函数超时
-
PHP file_get_contents超时的设置方法
-
PHP file_get_contents 函数超时的几种解决办法
-
php页面函数设置超时限制的方法,php页面函数超时
-
PHP file_get_contents函数读取远程数据超时的解决方法
-
PHP file_get_contents设置超时处理方法
-
PHP file_get_contents 函数超时的几种解决方法
-
PHP file_get_contents函数读取远程数据超时的解决方法
-
PHP file_get_contents设置超时处理方法