summaryrefslogtreecommitdiff
path: root/ext/dom/examples/shipping.php
blob: 5205fd2014cb6543117f43b2889ef6a025104f0e (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

$dom = new domDocument;
$dom->load('shipping.xml');
if (!$dom->schemaValidate('shipping.xsd')) {
  print "Document is not valid";
} else {
  print "Document is valid";
}

?>