1--TEST-- 2DomDocument::schemaValidate() - file that is not a schema 3--CREDITS-- 4Daniel Convissor <danielc@php.net> 5# TestFest 2009 NYPHP 6--EXTENSIONS-- 7dom 8--FILE-- 9<?php 10 11$doc = new DOMDocument; 12 13$doc->load(__DIR__."/book.xml"); 14 15$result = $doc->schemaValidate(__DIR__."/book-not-a-schema.xsd"); 16var_dump($result); 17 18?> 19--EXPECTF-- 20Warning: DOMDocument::schemaValidate(): %sbook-not-a-schema.xsd:1: parser error : Start tag expected, '<' not found in %s.php on line %d 21 22Warning: DOMDocument::schemaValidate(): Let's see what happens upon parsing a file that doesn't contain a schema. in %s.php on line %d 23 24Warning: DOMDocument::schemaValidate(): ^ in %s.php on line %d 25 26Warning: DOMDocument::schemaValidate(): Failed to parse the XML resource '%sbook-not-a-schema.xsd'. in %s.php on line %d 27 28Warning: DOMDocument::schemaValidate(): Invalid Schema in %s.php on line %d 29bool(false) 30