时间:2021-07-01 10:21:17 帮助过:6人阅读
比如说,上篇php教程中gd库实现下载网页所有图片中,第10行:
利用了stream_context_create()设置代理服务器:
代码如下:
//设置代理服务器 $opts = array('http'=>array('request_fulluri'=>true)); $context = stream_context_create($opts); $content = file_get_contents($url,false,$context);
利用了stream_context_create()设置超时时间:
代码如下:
$opts = array( 'http'=>array( 'method'=>"GET", 'timeout'=>60, ) ); $context = stream_context_create($opts); $html =file_get_contents('http://www.bitsCN.com', false, $context);