summaryrefslogtreecommitdiff
path: root/ext/simplexml/tests/bug75245.phpt
blob: fa795ff6857dc2e990a67840c8b3c82f73ceaf66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Bug #75245 Don't set content of elements with only whitespaces
--SKIPIF--
<?php
if (!extension_loaded('simplexml')) die('skip simplexml not available');
?>
--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) {
  }
}