网站地图    收藏   

主页 > php专栏 > php函数大全 >

file_get_contents获取远程网页内容函数 - php函数

来源:自学PHP网    时间:2014-11-25 00:26 作者: 阅读:

[导读] 由于某种原因把php的allow_url_fopen选项是关闭了,就是没法直接使用file_get_contents来获取远程web页面的内容,那就是可以使用另外一个函数curl.无限file_get_contents获取远程网页内容函数,代码如...

file_get_contents获取远程网页内容函数

由于某种原因把php的allow_url_fopen选项是关闭了,就是没法直接使用file_get_contents来获取远程web页面的内容,那就是可以使用另外一个函数curl.

无限file_get_contents获取远程网页内容函数,代码如下:

  1. function vita_get_url_content($url) { 
  2. if(function_exists('file_get_contents')) { 
  3. $file_contents = file_get_contents($url); 
  4. else {//开源代码phpfensi.com 
  5. $ch = curl_init(); 
  6. $timeout = 5;  
  7. curl_setopt ($ch, curlopt_url, $url); 
  8. curl_setopt ($ch, curlopt_returntransfer, 1);  
  9. curl_setopt ($ch, curlopt_connecttimeout, $timeout); 
  10. $file_contents = curl_exec($ch); 
  11. curl_close($ch); 
  12. return $file_contents; 

由于某种原因把php的allow_url_fopen选项是关闭了,就是没法直接使用file_get_contents来获取远程web页面的内容,那就是可以使用另外一个函数curl.

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论