如何设置file_get_contents()的时间限制?

时间:2015-06-27 14:30:00

标签: php parsing simple-html-dom

我使用SIMPLE HTML DOM进行解析。当我尝试获取内容时,有些页面需要很长时间。 我需要设置限制(例如10秒) - >转到下一页。 请不要插座!

1 个答案:

答案 0 :(得分:5)

您可以使用HTTP context option

所以代码看起来像

$options = stream_context_create(array('http'=>
    array(
    'timeout' => 10 //10 seconds
    )
));
echo file_get_contents('http://example.com/', false, $options);