php专区

 首页 > php专区 > PHP应用 > php函数大全 > php file_get_contents数据采集与常用见问题解决 - p

php file_get_contents数据采集与常用见问题解决 - p

分享到:
【字体:
导读:
          在批量的数据采集在php中很少会使用file_get_contents函数来操作,但是如果是小量的我们可以使用file_get_contents函数操作,因为它不但好用...

php file_get_contents数据采集与常用见问题解决

在批量的数据采集在php中很少会使用file_get_contents函数来操作,但是如果是小量的我们可以使用file_get_contents函数操作,因为它不但好用而且简单易学,下面我来介绍file_get_contents用法与使用过程中的问题解决办法。

先来看问题,file_get_contents不能获取带端口的网址,例如如下代码:

file_get_contents('http://localhost:12345');

没有任何获取,解决方法是:关闭selinux

1 永久方法 – 需要重启服务器

修改/etc/selinux/config文件中设置SELINUX=disabled ,然后重启服务器。

2 临时方法 – 设置系统参数

使用命令setenforce 0附:

setenforce 1 设置SELinux 成为enforcing模式

setenforce 0 设置SELinux 成为permissive模式

file_get_contents超时,代码如下:

  1. function _file_get_contents($url
  2.   $context = stream_context_create(array
  3.      'http' => array
  4.       'timeout' => 180 //超时时间,单位为秒 
  5.      )  
  6.   ));   
  7.   return @file_get_contents($url, 0, $context); 

好了上面的问题得到解决之后我们可以开始采集了,代码如下:

  1. //全国,判断条件是$REQUEST_URI是否含有html  
  2. if (!strpos($_SERVER["REQUEST_URI"],".html"))  
  3. {  
  4. $page="http://qq.ip138.com/weather/";  
  5. $html = file_get_contents($page,'r');  
  6. $pattern="/全国主要城市、县当天和未来五天天气趋势预报在线查询(.*?)padding:3px">/si";  
  7. //正则匹配之间的html  
  8. preg_match($pattern,$html,$pg);  
  9. echo "";  
  10. //正则替换远程地址为本地地址  
  11. $p=preg_replace('//weather/(w+)/index.htm/''tq.php/$1.html'$pg[1]);  
  12. echo $p;  
  13. }  
  14. //省,判断条件是$REQUEST_URI是否含有?  
  15. else if(!strpos($_SERVER["REQUEST_URI"],"?")){  
  16. //yoyo推荐的使用分割获得数据,这里是获得省份名称  
  17. $province=explode("/",$_SERVER["REQUEST_URI"]);  
  18. $province=explode(".",$province[count($province)-1]);  
  19. $province=$province[0];  
  20. //被注释掉的是我自己写出来的正则,感觉写的不好,但效果等同上面  
  21. //preg_match('/[^/]+[.(html)]$/',$_SERVER["REQUEST_URI"],$pro);  
  22. //$province=preg_replace('/.html/','',$pro[0]);  
  23. $page="http://qq.ip138.com/weather/".$province."/index.htm";  
  24. //获取html数据之前先尝试打开页面,防止恶意输入地址导致出错  
  25. if (!@fopen($page"r")) {  
  26. die("对不起,该地址不存在!点击这里返回");  
  27. exit(0);  
  28. }  
  29. $html = file_get_contents($page,'r');  
  30. $pattern="/五天天气趋势预报(.*?)请输入输入市/si";  
  31. preg_match($pattern,$html,$pg);  
  32. echo "";  
  33. //正则替换,获取省份,城市  
  34. $p=preg_replace('//weather/(w+)/(w+).htm/''$2.html?pro=$1'$pg[1]);  
  35. echo $p;  
  36. }  
  37. else {  
  38. //市,通过get传递省份  
  39. $pro=$_REQUEST['pro'];  
  40. $city=explode("/",$_SERVER["REQUEST_URI"]);  
  41. $city=explode(".",$city[count($city)-1]);  
  42. $city=$city[0];  
  43. //preg_match('/[^/]+[.(html)]+[?]/',$_SERVER["REQUEST_URI"],$cit);  
  44. //$city=preg_replace('/.html?/','',$cit[0]);  
  45. $page="http://qq.ip138.com/weather/".$pro."/".$city.".htm";  
  46. if (!@fopen($page"r")) {  
  47. die("对不起,该地址不存在!点击这里返回");  
  48. exit(0);  
  49. }  
  50. $html = file_get_contents($page,'r');  
  51. $pattern="/五天天气趋势预报(.*?)请输入输入市/si";  
  52. preg_match($pattern,$html,$pg);  
  53. echo "";  
  54. //获取真实的图片地址  
  55. $p=preg_replace('//image//''http://qq.ip138.com/image/'$pg[1]);  
  56. echo $p;  
  57. }  
  58. ?> 

如果上面办法无法采集到数据我们可以使用以下代码来处理,代码如下:

  1. $url = "http://www.phpfensi.com";  
  2. $ch = curl_init();  
  3. $timeout = 5;  
  4. curl_setopt($ch, CURLOPT_URL, $url);  
  5. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
  6. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);  
  7. //在需要用户检测的网页里需要增加下面两行  
  8. //curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);  
  9. //curl_setopt($ch, CURLOPT_USERPWD, US_NAME.":".US_PWD);  
  10. $contents = curl_exec($ch);  
  11. curl_close($ch);  
  12. echo $contents;  
  13. ?> 
分享到:
php中flush()和ob_flush(),ob_end_flush(...
php中flush()和ob_flush(),ob_end_flush()用法与区别 本文章来给大家总结介绍关于php中flush()和ob_flush(),ob_end_flush()用法与区别,有需要了解的朋友可进入参考参考。 首先来说说buffer,它是一个内存地址空间,为4096(1kb)【在php.ini配置文件中找到output_buffering配 置】,php有php o...
PHP获得内存使用状态memory_get_usage()...
PHP获得内存使用状态memory_get_usage()函数 在php中为你提供memory_get_usage函数,可以检查到你服务器当前所使用的内存情况,有了这个函数我们可以实时的检查服务器状态了,下面我来介绍memory_get_usage用法,格式化memory_get_usage()输出,代码如下:   //输出:256 kb  PHP ...
  •         php迷,一个php技术的分享社区,专属您自己的技术摘抄本、收藏夹。
  • 在这里……