答案 0 :(得分:3)
$tags = get_meta_tags('http://www.example.com/');
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
到这里查看用法示例