You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
392 B

23 years ago
  1. <?php
  2. $dom = new domDocument;
  3. $dom->load('note.xml');
  4. if (!$dom->validate('note.dtd')) {
  5. print "Document note.dtd is not valid\n";
  6. } else {
  7. print "Document note.dtd is valid\n";
  8. }
  9. $dom = new domDocument;
  10. $dom->load('note-invalid.xml');
  11. if (!$dom->validate('note.dtd')) {
  12. print "Document note-invalid.xml is not valid\n";
  13. } else {
  14. print "Document note-invalid.xml is valid\n";
  15. }
  16. ?>