mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

For rationale, see #6787 Extensions migrated in part 4: * simplexml * skeleton * soap * spl * sqlite3 * sysvmsg * sysvsem * tidy - also removed a check for an ancient dependency version
21 lines
366 B
PHP
21 lines
366 B
PHP
--TEST--
|
|
SimpleXMLElement->addAttribute()
|
|
--EXTENSIONS--
|
|
simplexml
|
|
--FILE--
|
|
<?php
|
|
$simple = simplexml_load_file(__DIR__."/book.xml");
|
|
$simple->addAttribute('type','novels');
|
|
|
|
var_dump($simple->attributes());
|
|
echo "Done";
|
|
?>
|
|
--EXPECT--
|
|
object(SimpleXMLElement)#2 (1) {
|
|
["@attributes"]=>
|
|
array(1) {
|
|
["type"]=>
|
|
string(6) "novels"
|
|
}
|
|
}
|
|
Done
|