Skip to content

Instantly share code, notes, and snippets.

@ethnt
Created November 1, 2009 23:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ethnt/223793 to your computer and use it in GitHub Desktop.
Save ethnt/223793 to your computer and use it in GitHub Desktop.
<?php
$xml = simplexml_load_file('registry.xml');
$sites = $xml->xpath('/remote/site');
foreach($sites as $site){
print($site->name);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment