0

我正在尝试阅读安全网页的元标记的内容。但是很难找到,因为属性不是一般的名称,作者等。如果有任何可能,请告诉。

提前致谢。

4

1 回答 1

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

于 2013-05-07T19:09:42.210 回答