--TEST--
SimpleXML: Attribute creation
--EXTENSIONS--
simplexml
--FILE--
EOF;
$sxe = simplexml_load_string($xml);
try {
$sxe[""] = "value";
} catch (ValueError $exception) {
echo $exception->getMessage() . "\n";
}
$sxe["attr"] = "value";
echo $sxe->asXML();
$sxe["attr"] = "new value";
echo $sxe->asXML();
try {
$sxe[] = "error";
} catch (ValueError $exception) {
echo $exception->getMessage() . "\n";
}
__HALT_COMPILER();
?>
===DONE===
--EXPECT--
Cannot create attribute with an empty name
Cannot append to an attribute list