获得og的最佳方式是什么:图像元属性

时间:2014-02-25 11:31:01

标签: php zend-framework

我正在尝试在我的网站上显示RSS提要链接,一切顺利,但是花了这么多时间来使用file_get_contents()方法获取 og:image 属性。有没有其他方法来获取元标记属性?

Python是否有助于更快地获得这些标签?

3 个答案:

答案 0 :(得分:9)

这就是我以前用来获取所有og:标签的方式:

libxml_use_internal_errors(true);
$doc = new DomDocument();
$doc->loadHTML(file_get_contents($url));
$xpath = new DOMXPath($doc);
$query = '//*/meta[starts-with(@property, \'og:\')]';
$metas = $xpath->query($query);
foreach ($metas as $meta) {
    $property = $meta->getAttribute('property');
    $content = $meta->getAttribute('content');
    echo '<h1>Meta '.$property.' <span>'.$content.'</span></h1>';
}

答案 1 :(得分:6)

<?php
$page_content = file_get_contents('http://example.com');

$dom_obj = new DOMDocument();
$dom_obj->loadHTML($page_content);
$meta_val = null;

foreach($dom_obj->getElementsByTagName('meta') as $meta) {

if($meta->getAttribute('property')=='og:image'){ 

    $meta_val = $meta->getAttribute('content');
}
}
echo $meta_val;
?>

答案 2 :(得分:-3)

您可以尝试PHP get_meta_tags功能。