>백엔드 개발 >PHP 튜토리얼 >PHP stream_context_create()函数的使用示例,createfile函数_PHP教程

PHP stream_context_create()函数的使用示例,createfile函数_PHP教程

WBOY
WBOY원래의
2016-07-13 09:54:111002검색

PHP stream_context_create()函数的使用示例,createfile函数

stream_context_create()函数是用来 创建打开文件的上下文件选项 ,用于fopen(),file_get_contents()等过程的超时设置、代理服务器、请求方式、头信息设置的特殊过程。

比如说,上篇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.bkjia.com', false, $context);

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/998563.htmlTechArticlePHP stream_context_create()函数的使用示例,createfile函数 stream_context_create()函数是用来 创建打开文件的上下文件选项 ,用于fopen(),file_get_content...
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.