-
php get_headers 与get_meta_tags函数实例
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,才能使用.
出处:http://www.phpfensi.com/php/20140115/1318.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式