1--TEST-- 2Test DOMDocument::load() with LIBXML_DTDATTR, LIBXML_NOCDATA, LIBXML_NOENT, LIBXML_NOBLANKS 3--DESCRIPTION-- 4This test verifies the right behaviour of the following constants: 5LIBXML_DTDATTR, LIBXML_NOCDATA, LIBXML_NOENT and LIBXML_NOBLANKS 6Environment variables used in the test: 7- XML_FILE: the xml file to load 8- LOAD_OPTIONS: the second parameter to pass to the method 9- EXPECTED_RESULT: the expected result 10--CREDITS-- 11Antonio Diaz Ruiz <dejalatele@gmail.com> 12--EXTENSIONS-- 13dom 14--ENV-- 15XML_FILE=/book_with_dtd.xml 16LOAD_OPTIONS=LIBXML_DTDATTR|LIBXML_NOCDATA|LIBXML_NOENT|LIBXML_NOBLANKS 17EXPECTED_RESULT=1 18--FILE_EXTERNAL-- 19domdocumentload_test_method_savexml.inc 20--EXPECT-- 21<?xml version="1.0" encoding="UTF-8"?> 22<!DOCTYPE books SYSTEM "books.dtd"> 23<books><book><title default="default title">The Grapes of Wrath</title><author>John Steinbeck</author></book><book><title default="default title">The Pearl</title><author>John Steinbeck</author></book><book><title default="default title">entity is only for test purposes</title><author>data for test</author></book></books> 24