file_get_contents默认超时时间(秒)
php.ini中的default_socket_timeout设置,默认超时时间是default_socket_timeout = 60
如果要修改超时时间,修改第3个参数即可
$opts = array(
'http'=>array(
'method'=>"GET",
'timeout'=>120,
)
);
$context = stream_context_create($opts);
$html =file_get_contents('http://www.example.com', false, $context);
|