We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This is a small helper script to help with the retrieval of pages that contain Open Graph Protocol data.
The code is under the Apache 2.0 License
<?php require_once('OpenGraph.php'); $o = OpenGraph::fetch('http://www.rottentomatoes.com/m/10011268-oceans/'); if ($o) { var_dump($o->keys()); var_dump($o->title); foreach ($o AS $key => $value) { echo "$key is $value\n"; } }