-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/dom/examples/
File Upload :
Current File : //usr/src/php/ext/dom/examples/note.php

<?php

$dom = new domDocument;
$dom->load('note.xml');
if (!$dom->validate('note.dtd')) {
  print "Document note.dtd is not valid\n";
} else {
  print "Document note.dtd is valid\n";
}

$dom = new domDocument;
$dom->load('note-invalid.xml');
if (!$dom->validate('note.dtd')) {
  print "Document note-invalid.xml is not valid\n";
} else {
  print "Document note-invalid.xml is valid\n";
}

?>

Copyright © 2017 || Recoded By Mr.Bumblebee