ru_php/ext/simplexml/tests/bug75245.phpt

18 lines
353 B
Plaintext
Raw Permalink Normal View History

--TEST--
Bug #75245 Don't set content of elements with only whitespaces
--EXTENSIONS--
simplexml
--FILE--
<?php
var_dump(simplexml_load_string('<test1><test2> </test2><test3></test3></test1>'));
?>
--EXPECT--
object(SimpleXMLElement)#1 (2) {
["test2"]=>
object(SimpleXMLElement)#2 (0) {
}
["test3"]=>
object(SimpleXMLElement)#3 (0) {
}
}