热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

php中file_get_contents和curl两个函数用法

文章简单的介绍了php中file_get_contents和curl两个函数用法,在不能使用file_get_contents时可以尝试一下curl函数,下面是file_get_contents和curl两个函数同样功能的不同写法file_get_contents函

文章简单的介绍了php中file_get_contents和curl两个函数用法,在不能使用file_get_contents时可以尝试一下curl函数,下面是file_get_contents和curl两个函数同样功能的不同写法.

file_get_contents函数的使用示例,代码如下:

  1. $file_contents = file_get_contents('http://www.phpfensi.com/'); 
  2. echo $file_contents
  3. ?> 

换成curl函数的使用示例,代码如下:

  1. $ch = curl_init(); 
  2. $timeout = 5; 
  3. curl_setopt ($ch, CURLOPT_URL, 'http://www.phpfensi.com'); 
  4. curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
  5. curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); 
  6. $file_contents = curl_exec($ch); 
  7. curl_close($ch); 
  8. echo $file_contents; 
  9. ?> 

利用function_exists函数来判断php是否支持一个函数可以轻松写出下面函数,代码如下:

  1.  
  2. function vita_get_url_content($url) { 
  3.  
  4. if(function_exists('file_get_contents')) { 
  5.  
  6. $file_contents = file_get_contents($url); 
  7.  
  8. else { 
  9.  
  10. $ch = curl_init(); 
  11.  
  12. $timeout = 5; 
  13.  
  14. curl_setopt ($ch, CURLOPT_URL, $url); 
  15.  
  16. curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
  17.  
  18. curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); 
  19.  
  20. $file_contents = curl_exec($ch); 
  21.  
  22. curl_close($ch); 
  23.  
  24.  
  25. return $file_contents
  26.  
  27.  
  28. ?> 

其实上面的这个函数还有待商议,如果你的主机服务商把file_get_contents和curl都关闭了,上面的函数就会出现错误.

推荐阅读
author-avatar
benpk2702933054
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有