一尘不染

使用PHP获取Facebook元标记

php

我正在尝试从HTML中获取Facebook的元标记。

我正在使用简单的html dom从站点获取所有html数据。我已经尝试过preg_replace,但是没有运气。

例如,我想要获取此fb元标记的内容:

<meta content="IMAGE URL" property="og:image" />

希望有人能帮忙!:-)


阅读 332

收藏
2020-05-29

共1个答案

一尘不染

我将建议使用get_meta_tags(),但似乎不起作用(对我而言):s

<?php
$tags = get_meta_tags('http://www.example.com/');
echo $tags['og:image'];
?>

但是我还是建议还是使用DOMDocument

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

$html = new DOMDocument();
@$html->loadHTML($sites_html);
$meta_og_img = null;
//Get all meta tags and loop through them.
foreach($html->getElementsByTagName('meta') as $meta) {
    //If the property attribute of the meta tag is og:image
    if($meta->getAttribute('property')=='og:image'){ 
        //Assign the value from content attribute to $meta_og_img
        $meta_og_img = $meta->getAttribute('content');
    }
}
echo $meta_og_img;
?>

希望能帮助到你

2020-05-29