php curl、fopen、file_get_contents实例代码
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-17 20:45:41 浏览: 评论:0
- //php curl实例代码如下:
- session_write_close();
- $pageurl = "http://www.phpfensi.com/index.html";
- curl_setopt($ch, curlopt_returntransfer, 1);
- curl_setopt ($ch, curlopt_url, $pageurl );
- $html = curl_exec ( $ch );
- curl_close($ch);
- //then you need to fix pathing to absolute
- $search = "/(src|href|background)="[^:,^>,^"]*"/i";
- preg_match_all ( $search, $html, $a_matches );
- //php fopen实例,代码如下:
- $file = fopen("http://www.phpfensi.com/","r"); //读取远程文件
- $file = fopen("a.txt","r");//读取本地文件
- //php file_get_contents
- $homepage = file_get_contents('http://www.phpfensi.com/'); //读取远程文本
- echo $homepage;
- :
- // <= php 5
- $file = file_get_contents('./people.txt', true);
- // > php 5
- $file = file_get_contents('./people.txt', file_use_include_path); //打开本地文本
Tags: curl、fopen、file_get_contents
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)