当前位置:首页 > PHP教程 > php函数 > 列表

php get_headers 与get_meta_tags函数实例

发布:smiling 来源: PHP粉丝网  添加日期:2014-01-15 08:41:38 浏览: 评论:0 

get_headers是获取http头信息,get_meta_tags是获取网页的description,abstract,keywords等信息.

  1. */ 
  2. $url='http://www.phpfensi.com';          //定义url 
  3. print_r(get_headers($url));         //无格式获取 
  4. print_r(get_headers($url,1));         //带上格式获取 
  5.  
  6. /* 
  7. array 
  8. ( 
  9.     [0] => http/1.1 200 ok 
  10.     [1] => connection: close 
  11.     [2] => date: sat, 11 dec 2010 05:43:46 gmt 
  12.     [3] => content-length: 69617 
  13.     [4] => content-type: text/html 
  14.     [5] => content-location: http://www.phpfensi.com/index.html 
  15.     [6] => last-modified: sat, 11 dec 2010 05:19:51 gmt 
  16.     [7] => accept-ranges: bytes 
  17.     [8] => etag: "e8be4b9f398cb1:6c66" 
  18.     [9] => server: microsoft-iis/6.0 
  19.     [10] => x-powered-by: asp.net 
  20. ) 
  21. array 
  22. ( 
  23.     [0] => http/1.1 200 ok 
  24.     [connection] => close 
  25.     [date] => sat, 11 dec 2010 05:43:47 gmt 
  26.     [content-length] => 69617 
  27.     [content-type] => text/html 
  28.     [content-location] => http://www.phpfensi.com/index.html 
  29.     [last-modified] => sat, 11 dec 2010 05:19:51 gmt 
  30.     [accept-ranges] => bytes 
  31.     [etag] => "e8be4b9f398cb1:6c66" 
  32.     [server] => microsoft-iis/6.0 
  33.     [x-powered-by] => asp.net 
  34. ) 
  35. get_meta_tags($url); 
  36. 获取指定网页的description,abstract,keywords等信息 
  37. */ 
  38. $tags=get_meta_tags('http://www.phpfensi.com/');      //提取meta标签 
  39. print_r($tags)   //输出数组全部内容 
  40. /* 
  41. array 
  42.     [description] => 网页制作教程网提供专业网页设计教程与网页制作教程包括有photoshop教程,flash,html,css教程,dreamweaver,fireworks,asp,php教程,jsp教程,asp.net,网站建设,网站开发,网页特效,平面设计,个人网站,网页素材 
  43.     [abstract] => 提供最新的网页制作教程、网页设计教程、网页特效,为个人网站提供网页素材模板和网页视频学习。 
  44.     [keywords] => 网页设计教程,网页制作教程,网页学习,photoshop,flash,html,css,dreamweaver,fireworks,asp,php,jsp,asp.net,网页特效,平面设计,网页素材 

注意:使用该函数需要把 php.ini里面的allow_url_fopen = on,才能使用.

Tags: get_headers get_meta_tags

分享到: