Skip to content

Instantly share code, notes, and snippets.

@extstopcodepls
Created March 17, 2014 16:34
Show Gist options
  • Save extstopcodepls/9602930 to your computer and use it in GitHub Desktop.
Save extstopcodepls/9602930 to your computer and use it in GitHub Desktop.
php validate of xml
<?php
$dom = new DOMDocument;
$dom->load('studenci.xml');
if($dom->relaxNGValidate('xml.rng'))
{
echo "udało się \n";
}
else
{
echo "nie udało się \n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment