我正试图从我的HTML中获取Facebook的元标记。
我正在使用简单的html dom从网站获取所有html数据。 我试过preg_replace,但没有运气。
我希望例如获取此fb元标记的内容:
<meta content="IMAGE URL" property="og:image" />
希望有人可以帮忙! : - )
答案 0 :(得分:21)
我打算建议使用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;
?>
希望有所帮助
答案 1 :(得分:1)
根据这种方法,你将得到facebook开放图形标签的密钥对数组。
$url="http://fbcpictures.in";
$site_html= file_get_contents($url);
$matches=null;
preg_match_all('~<\s*meta\s+property="(og:[^"]+)"\s+content="([^"]*)~i', $site_html,$matches);
$ogtags=array();
for($i=0;$i<count($matches[1]);$i++)
{
$ogtags[$matches[1][$i]]=$matches[2][$i];
}