File_Get_Contents() 超时吗?
File_get_contents() 是一个从远程 URL 检索内容的强大工具。然而,在处理冗长的过程时,会出现潜在的超时问题。
File_Get_Contents() 有超时吗?
幸运的是,file_get_contents() 确实有超时机制。默认情况下,超时由 default_socket_timeout ini 设置设置,配置为 60 秒。这意味着如果在 60 秒内无法检索到内容,则会抛出超时异常。
自定义超时
可以自定义默认超时以适应特定情况需要。可以使用两种方法:
ini_set('default_socket_timeout', 900); // 900 Seconds (15 Minutes)
$ctx = stream_context_create(array( 'http' => array( 'timeout' => 1200 // 1200 Seconds (20 Minutes) ) )); echo file_get_contents('http://example.com/', false, $ctx);
通过设置更高的超时,用户可以确保 file_get_contents() 在触发超时之前等待更长的时间。
以上是`file_get_contents()` 有超时机制吗?的详细内容。更多信息请关注PHP中文网其他相关文章!