php stream_context_create函数
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-19 16:19:30 浏览: 评论:0
stream_context_create创建并返回一个文本数据流并应用各种选项,可用于fopen(),file_get_contents()等过程的超时设置、代理服务器、请求方式、头信息设置的特殊过程.
函数原型:resource stream_context_create ([array $options [,array $params ]] ),看个实例:
- //定义options数组
- $opts=array
- (
- 'http'=>array
- (
- 'method'=>"get",
- 'header'=>"accept-language: enrn"."cookie: foo=barrn"
- )
- );
- //创建数据流上下文
- $context=stream_context_create($opts);
- /*向指定地址发送http请求
- 请求中包含附加的头部信息*/
- $fp=fopen('http://www.111cn.net','r',false,$context);
- //输出文件指针处的所有数据
- fpassthru($fp);
- //关闭文件
- fclose($fp);
- /*
- //该代码的输出结果为:即请求的cookie值
- array
- (
- [foo] => bar
- )
- */
实例二,代码如下:
- $default_opts=array
- (
- 'http'=>array
- (
- 'method'=>"get",
- 'header'=>"accept-language: enrn"."cookie: foo=bar",
- 'proxy'=>"tcp://10.54.1.39:8000"
- )
- );
- $alternate_opts=array
- (
- 'http'=>array
- (
- 'method'=>"post",
- 'header'=>"content-type: application/x-www-form-urlencodedrn"."content-length: " . strlen("baz=bomb"),
- 'content'=>"baz=bomb"
- )
- );
- $default=stream_context_get_default($default_opts);
- $alternate=stream_context_create($alternate_opts);
- /* sends a regular get request to proxy server at 10.54.1.39
- * for www.phpfensi.com using context options specified in $default_opts
- */
- readfile('http://www.phpfensi.com');
- /* sends a post request directly to www.phpfensi.com
- * using context options specified in $alternate_opts
- */
- readfile('http://www.phpfensi.com', false, $alternate);
Tags: stream_context_create php函数
- 上一篇:自定session保存路径 删除,注销,写入函数
- 下一篇:php文件操作函数集
相关文章
- ·PHP stream_context_create()函数的使用示例(2021-05-26)
- ·什么函数能够把文件从一个目录下转移到另外一个目录下?(2013-11-27)
- ·计算一个程序的执行时间的函数(2013-11-27)
- ·强大的php检查文件类型(2013-11-30)
- ·强php编码转换函数(2013-11-30)
- ·PHP函数学习之PHP函数点评(2014-01-14)
- ·php函数ob_start()、ob_end_clean()、ob_get_contents()(2014-03-22)
- ·关于php函数isset和empty的一些误解(2014-06-11)
- ·php中使用is_numberic函数注意事项(2014-08-21)
- ·PHP利用str_replace()函数防注入(2014-08-22)
- ·PHP中自带函数过滤sql注入代码分析(2014-08-23)
- ·php中json_encode函数对中文的处理例子(2014-08-27)
- ·php里常用的远程采集函数(2014-08-27)
- ·用php写 ftp文件上传函数教程(2014-09-09)
- ·php mysql_real_escape_string()函数(2014-09-11)
- ·php odbc_connect()函数说明与实例代码(2014-09-11)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)