摘要: <?php $ctx = stream_context_create(array( 'http' => array( 'timeout' => 1 //设置一个超时时间,单位为秒 ) ) ); file_get_contents("http://example.com/", 0, $ctx); ?> 设置一个超时时间就可以,可以自行封装函数 阅读全文
posted @ 2012-07-25 10:34 Falling Leaves 阅读(446) 评论(0) 推荐(0) 编辑