php中的file_get_contents函数
php中的file_get_contents函数的context参数,是如何使用的?怎么设置file_get_contents执行的时间,如果超过执行时间则返回false?
php中的file_get_contents函数的context参数,是如何使用的?怎么设置file_get_contents执行的时间,如果超过执行时间则返回false?
答案:$opts= array(
'http'=>array(
'method'=>"GET",
'timeout'=>60,
)
);
$context = stream_context_create($opt);
$html =file_get_contents(' http://www.xxxxx.com', false, $context);百度搜索 file_get_contents