• Stars
    star
    463
  • Rank 94,317 (Top 2 %)
  • Language
    PHP
  • Created over 14 years ago
  • Updated almost 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Helper class for accessing the OpenGraph Protocol

Open Graph Protocol helper for PHP

A small library for making accessing of Open Graph Protocol data easier

Note

Keys with a dash (-) in the name are converted to _ for easy access as a property in PHP

Required Extensions

  • DOM for parsing

Usage

require_once('OpenGraph.php');

$graph = OpenGraph::fetch('http://www.rottentomatoes.com/m/10011268-oceans/');
var_dump($graph->keys());
var_dump($graph->schema);

foreach ($graph as $key => $value) {
	echo "$key => $value";
}