<b>Label:</b> <?php 
echo $graph->label("http://aelius.com/njh#me");
?>
 <br />
  <b>Properties:</b> <?php 
echo join(', ', $graph->properties("http://example.com/joe"));
?>
 <br />
  <b>PropertyUris:</b> <?php 
echo join(', ', $graph->propertyUris("http://example.com/joe"));
?>
 <br />
  <b>People:</b> <?php 
echo join(', ', $graph->allOfType('foaf:Person'));
?>
 <br />
  <b>Unknown:</b> <?php 
echo $graph->get("http://example.com/joe", "unknown:property");
?>
 <br />
</p>

<pre>
  <?php 
echo print_r($graph->toArray());
?>
</pre>

</body>
</html>