--TEST-- DOMDocument::$preserveWhiteSpace - test ability to read and write property --CREDITS-- Lev Radin # TestFest 2009 NYPHP --EXTENSIONS-- dom --FILE-- load(__DIR__."/book.xml"); echo $doc->saveXML(); echo "\nLoad document with preserveWhiteSpace off\n"; $doc = new DOMDocument; $doc->preserveWhiteSpace = false; $doc->load(__DIR__."/book.xml"); echo $doc->saveXML(); ?> --EXPECT-- Load document with preserveWhiteSpace on The Grapes of Wrath John Steinbeck The Pearl John Steinbeck Load document with preserveWhiteSpace off The Grapes of WrathJohn SteinbeckThe PearlJohn Steinbeck