当前位置:Gxlcms > PHP教程 > file_get_contents超时设置

file_get_contents超时设置

时间:2021-07-01 10:21:17 帮助过:19人阅读

file_get_contents超时设置

// Create the stream context

$context = stream_context_create(array(

'http' => array(

'timeout' => 3000 //超时时间,单位为秒

)

));

// Fetch the URL's contents

$contents = file_get_contents('http://sample.com', 0, $context);

参考:http://www.acwind.net/blog/archives/1269

以上就介绍了file_get_contents超时设置,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行