当前位置:首页 > PHP教程 > php应用 > 列表

php curl、fopen、file_get_contents实例代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-17 20:45:41 浏览: 评论:0 
  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); //打开本地文本 

Tags: curl、fopen、file_get_contents

分享到: