Sorry It might too simple question. However I can't find solution.
I try to find the OGP tag like this
<meta property="og:title" content="MyTitle" />
<meta property="og:type" content="MyProduct" />
I red PHP Simple HTML DOM Parser Manual and try very simple php script.
$html = str_get_html($source);
$meta = $html->find("meta[property=og:title]");
var_dump($meta->content);
It shows nothing. How can I get content??