From: Marcus Boerger Date: Tue, 16 Dec 2003 20:50:20 +0000 (+0000) Subject: Add a test to check split text content collecting X-Git-Tag: php-5.0.0b3RC1~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b712c890c240e00726c326f782c217773d17967;p=php Add a test to check split text content collecting --- diff --git a/ext/simplexml/tests/013.phpt b/ext/simplexml/tests/013.phpt new file mode 100755 index 0000000000..85700956b6 --- /dev/null +++ b/ext/simplexml/tests/013.phpt @@ -0,0 +1,24 @@ +--TEST-- +SimpleXML and Split text content +--SKIPIF-- + +--FILE-- + +barbar +EOF; + +$sxe = simplexml_load_string($xml); + +var_dump((string)$sxe); + +?> +===DONE=== +--EXPECT-- +string(6) "barbar" +===DONE===