首页 > 开发 > PHP > 正文

php获取网站百度快照日期的方法

2024-05-04 23:38:19
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php获取网站百度快照日期的方法,涉及php页面读取及正则匹配的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了php获取网站百度快照日期的方法。分享给大家供大家参考。具体如下:

 

 
  1. <html> 
  2. <head> 
  3. <title>在线演示_php获取某网站的快照时间</title> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5. <meta name="keywords" content="百度,baidu,查询快照结果"
  6. <meta name="description" content="php查询网站快照日期: "
  7. </head> 
  8. <body> 
  9. <?php $k=isset($_POST['k'])?$_POST['k']:''; ?> 
  10. <form method="post" action=""
  11. <h2>查询网站快照日期:</h2> 
  12. 输入网址:<br /> 
  13. http://<input type="text" name="k" size="60" value="<?php echo $k ?>"> 
  14. <input type="submit" value="提交"
  15. </form> 
  16. <?php 
  17. /* 
  18. php获取某网站的快照时间 by enenba 
  19. 2012-6-18 
  20. @param str $url 一级域名 
  21. @param str 时间格式 
  22. */ 
  23. function getKuaiZhao($text) { 
  24. $url = 'http://www.baidu.com/s?word='.$text; 
  25. $html = file_get_contents($url); 
  26. $text = str_replace('.','/.',addslashes($text)); 
  27. $search = '/<b>'.$text.'<//b>[^<]*((?:19|20)[0-9]{2}-(?:1[012]|[1-9])-(?:[12][0-9]|3[01]|[1-9]))/'
  28. preg_match($search, $html, $r); 
  29. //highlight_string($search); 
  30. return $r[1]; 
  31. if($k=='') { 
  32. echo('请输入url'); 
  33. }else
  34. if($r = getKuaiZhao($k)) { 
  35. echo '快照:'.$r;  
  36. }else { 
  37. echo('无快照'); 
  38. ?> 
  39. </body> 
  40. </html> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表