我正在尝试阅读安全网页的元标记内容。但是发现它很难,因为这些属性并不像名字,作者等那样普遍。如果他们有任何可能的方式请告诉你。
提前致谢。
答案 0 :(得分:1)
<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
?>