如何获取网页元标记的内容

时间:2013-05-07 18:39:02

标签: html tags meta

我正在尝试阅读安全网页的元标记内容。但是发现它很难,因为这些属性并不像名字,作者等那样普遍。如果他们有任何可能的方式请告诉你。

提前致谢。

1 个答案:

答案 0 :(得分:1)

你在php.net上看过这些帖子吗?

<meta name="author" content="name">
<meta name="keywords" content="php documentation">
<meta name="DESCRIPTION" content="a php manual">
<meta name="geo.position" content="49.33;-86.59">
</head> <!-- parsing stops here -->

使用下面的PHP代码写下这些元标记

<?php
// Assuming the above tags are at www.example.com
$tags = get_meta_tags('http://www.example.com/');

// Notice how the keys are all lowercase now, and
// how . was replaced by _ in the key.
echo $tags['author'];       // name
echo $tags['keywords'];     // php documentation
echo $tags['description'];  // a php manual
echo $tags['geo_position']; // 49.33;-86.59
?>

这些代码取自http://php.net/manual/en/function.get-meta-tags.php