欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

file_get_contents超时设置

程序员文章站 2022-04-14 17:27:25
...
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教程有兴趣的朋友有所帮助。