18 lines
353 B
Plaintext
18 lines
353 B
Plaintext
|
|
--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) {
|
||
|
|
}
|
||
|
|
}
|