如何使用PHP从元标记中读取数据

时间:2017-03-15 10:58:44

标签: php meta-tags

我想创建一个搜索框,其中数据将从网站的元标记中匹配。 我怎样才能使用PHP? 我只想搞定其元标记数据与搜索文本匹配的网址。

1 个答案:

答案 0 :(得分:0)

使用get_meta_tags()

  

示例: -

<?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
?>