php get_headers 与get_meta_tags函数实例
发布:smiling 来源: PHP粉丝网 添加日期:2014-01-15 08:41:38 浏览: 评论:0
get_headers是获取http头信息,get_meta_tags是获取网页的description,abstract,keywords等信息.
- */
- $url='http://www.phpfensi.com'; //定义url
- print_r(get_headers($url)); //无格式获取
- print_r(get_headers($url,1)); //带上格式获取
- /*
- array
- (
- [0] => http/1.1 200 ok
- [1] => connection: close
- [2] => date: sat, 11 dec 2010 05:43:46 gmt
- [3] => content-length: 69617
- [4] => content-type: text/html
- [5] => content-location: http://www.phpfensi.com/index.html
- [6] => last-modified: sat, 11 dec 2010 05:19:51 gmt
- [7] => accept-ranges: bytes
- [8] => etag: "e8be4b9f398cb1:6c66"
- [9] => server: microsoft-iis/6.0
- [10] => x-powered-by: asp.net
- )
- array
- (
- [0] => http/1.1 200 ok
- [connection] => close
- [date] => sat, 11 dec 2010 05:43:47 gmt
- [content-length] => 69617
- [content-type] => text/html
- [content-location] => http://www.phpfensi.com/index.html
- [last-modified] => sat, 11 dec 2010 05:19:51 gmt
- [accept-ranges] => bytes
- [etag] => "e8be4b9f398cb1:6c66"
- [server] => microsoft-iis/6.0
- [x-powered-by] => asp.net
- )
- get_meta_tags($url);
- 获取指定网页的description,abstract,keywords等信息
- */
- $tags=get_meta_tags('http://www.phpfensi.com/'); //提取meta标签
- print_r($tags) //输出数组全部内容
- /*
- array
- (
- [description] => 网页制作教程网提供专业网页设计教程与网页制作教程包括有photoshop教程,flash,html,css教程,dreamweaver,fireworks,asp,php教程,jsp教程,asp.net,网站建设,网站开发,网页特效,平面设计,个人网站,网页素材
- [abstract] => 提供最新的网页制作教程、网页设计教程、网页特效,为个人网站提供网页素材模板和网页视频学习。
- [keywords] => 网页设计教程,网页制作教程,网页学习,photoshop,flash,html,css,dreamweaver,fireworks,asp,php,jsp,asp.net,网页特效,平面设计,网页素材
- )
注意:使用该函数需要把 php.ini里面的allow_url_fopen = on,才能使用.
Tags: get_headers get_meta_tags
- 上一篇:php分割字符串函数
- 下一篇:linux 下 php的 iconv()函数
相关文章
- ·PHP get_headers函数判断远程文件是否存在(2014-09-14)
- ·PHP使用get_headers函数判断远程文件是否存在的方法(2021-05-01)
- ·PHP实现的带超时功能get_headers函数(2021-05-11)
- ·你可能不知道PHP get_meta_tags()函数(2020-12-14)
- ·php中get_meta_tags()、CURL与user-agent用法分析(2021-05-03)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)