PHP stream_context_create()函数的使用示例_php实例
程序员文章站
2022-03-30 18:14:05
...
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.php.net', false, $context);
推荐阅读
-
基于curl数据采集之单页面并行采集函数get_htmls的使用_PHP
-
PHP __autoload函数(自动载入类文件)的使用方法
-
如何使用PHP中的字符串函数
-
php生成二维码的几种方式整理及使用实例_PHP
-
php中的curl使用入门教程和常见用法实例_php实例
-
defines PHP define函数的使用说明
-
PHP函数getenv使用实例介绍_PHP教程
-
PHP 在数组中搜索给定的简单实例 array_search 函数
-
Thinkphp模板中使用自定义函数的方法_PHP
-
WordPress开发中的get_post_custom()函数使用解析,wordpressgetpost_PHP教程