Annotation of embedaddon/php/ext/dom/tests/DOMDocument_schemaValidateSource_basic.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: DomDocument::schemaValidateSource() - basic
! 3: --CREDITS--
! 4: Daniel Convissor <danielc@php.net>
! 5: # TestFest 2009 NYPHP
! 6: --SKIPIF--
! 7: <?php require_once('skipif.inc'); ?>
! 8: --FILE--
! 9: <?php
! 10:
! 11: $doc = new DOMDocument;
! 12:
! 13: $doc->load(dirname(__FILE__)."/book.xml");
! 14:
! 15: $xsd = file_get_contents(dirname(__FILE__)."/book.xsd");
! 16:
! 17: $result = $doc->schemaValidateSource($xsd);
! 18: var_dump($result);
! 19:
! 20: ?>
! 21: --EXPECT--
! 22: bool(true)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>