用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

php curl、fopen、file_get_contents实例代码

时间:2015-01-23  来源:西部数据  作者:西部数据
  1. //php curl实例代码如下: 
  2.  
  3. session_write_close(); 
  4. $pageurl = "http://www.phpfensi.com/index.html";  
  5. curl_setopt($ch, curlopt_returntransfer, 1);  
  6. curl_setopt ($ch, curlopt_url, $pageurl );  
  7. $html = curl_exec ( $ch );  
  8. curl_close($ch); 
  9. //then you need to fix pathing to absolute  
  10. $search = "/(src|href|background)="[^:,^>,^"]*"/i"; 
  11. preg_match_all ( $search$html$a_matches ); 
  12.  
  13. //php fopen实例,代码如下: 
  14.  
  15. $file = fopen("http://www.phpfensi.com/","r"); //读取远程文件 
  16. $file = fopen("a.txt","r");//读取本地文件 
  17. //php file_get_contents 
  18. $homepage = file_get_contents('http://www.phpfensi.com/'); //读取远程文本 
  19. echo $homepage
  20. // <= php 5 
  21. $file = file_get_contents('./people.txt', true); 
  22. // > php 5 
  23. $file = file_get_contents('./people.txt', file_use_include_path); //打开本地文本 
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
    无相关信息
栏目更新
栏目热门