📌  相关文章
📜  file_get_contents 超时 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:35.788000             🧑  作者: Mango

代码示例1
$ctx = stream_context_create(array('http'=>
    array(
        'timeout' => 1200,  //1200 Seconds is 20 Minutes
    )
));

echo file_get_contents('http://example.com/', false, $ctx);