php-src/ext/simplexml/tests/016a.phpt
Rob Richards a3e906515c add unicode support
update tests (binary string must be passed to simplexml_load_string)
2006-08-08 20:52:45 +00:00

40 lines
663 B
PHP
Executable File

--TEST--
SimpleXML: concatenating attributes
--SKIPIF--
<?php if (!extension_loaded("simplexml")) print "skip"; ?>
--FILE--
<?php
$xml =b<<<EOF
<people>
<person name="Foo"></person>
</people>
EOF;
$people = simplexml_load_string($xml);
var_dump($people->person['name']);
$people->person['name'] .= 'Bar';
var_dump($people->person['name']);
?>
===DONE===
--EXPECTF--
object(SimpleXMLElement)#%d (1) {
[0]=>
string(3) "Foo"
}
object(SimpleXMLElement)#%d (1) {
[0]=>
string(6) "FooBar"
}
===DONE===
--UEXPECTF--
object(SimpleXMLElement)#%d (1) {
[0]=>
unicode(3) "Foo"
}
object(SimpleXMLElement)#%d (1) {
[0]=>
unicode(6) "FooBar"
}
===DONE===