php 读取文件函数
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-19 22:36:23 浏览: 评论:0
1、用file_get_contents或者fopen、file、readfile等函数读取url的时候,会创建一个名为$http_response_header的变量来保存http响应的报头,使用fopen等函数打开的数据流信息可以用stream_get_meta_data来获取.
2、php5中新增的参数context使这些函数更加灵活,通过它我们可以定制http请求,甚至post数据.
示例代码1,如下:
- <?php
- $html = file_get_contents('http://www.phpfensi.com);
- print_r($http_response_header);
- // or
- $fp = fopen('http://www.example.com', 'r');
- print_r(stream_get_meta_data($fp));
- fclose($fp);
- ?>
示例代码2,代码如下:
- <?php
- $data = array ('foo' => 'bar');
- $data = http_build_query($data);
- $opts = array (
- 'http' => array (
- 'method' => 'post',
- 'header'=> "content-type: application/x-www-form-urlencoded " .
- "content-length: " . strlen($data) . " ",
- 'content' => $data
- ),
- );
- $context = stream_context_create($opts);
- $html = file_get_contents('http://www.phpfensi.com', false, $context);
- echo $html;
- ?>
实例三
获取过来以后自动输出到浏览器,我们有没有其他的方式组织获取的信息,然后控制其输出的内容呢?完全没有问题,在curl_setopt()函数的参数中,如果希望获得内容但不输出,使用curlopt_returntransfer 参数,并设为非0值/true!,完整代码请看:
- <?php// create a new curl resource $ch = curl_init(); // set url and other appropriate options curl_setopt($ch, curlopt_url, “http://www.google.nl/”);
- curl_setopt($ch, curlopt_returntransfer, true); // grab url, and return output $output = curl_exec($ch); // close curl resource, and free up system resources curl_close($ch); // replace ‘google’ with ‘phpit’ $output = str_replace(’google’,‘phpit’, $output); // print output echo $output;
- //开源软件:phpfensi.com
- ?>
Tags: php读取文件 php读取函数
- 上一篇:php 字符串长度函数
- 下一篇:php filter_input函数
相关文章
- ·php读取本地文件常用函数(2014-09-13)
- ·php读取本地文件操作函数(2014-09-13)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)