Skip to content

Instantly share code, notes, and snippets.

View sbucklew26's full-sized avatar

Sarah Bucklew sbucklew26

View GitHub Profile
@sbucklew26
sbucklew26 / og-php.php
Created December 8, 2016 02:45 — forked from tutweb/og-php.php
Get Open Graph Meta Tag Using PHP
<?php
function fetch_og($url)
{
$data = file_get_contents($url);
$dom = new DomDocument;
@$dom->loadHTML($data);
$xpath = new DOMXPath($dom);
# query metatags dengan prefix og
$metas = $xpath->query('//*/meta[starts-with(@property, \'og:\')]');