PHP addAttribute()函数讲解
程序员文章站
2022-03-20 14:00:27
php addattribute() 函数
实例
给根元素和 body 元素添加一个属性:
php addattribute() 函数
实例
给根元素和 body 元素添加一个属性:
<?php $note=<<<xml <note> <to>tove</to> <from>jani</from> <heading>reminder</heading> <body>don't forget me this weekend!</body> </note> xml; $xml=new simplexmlelement($note); $xml->addattribute("type","private"); $xml->body->addattribute("date","2013-01-01"); echo $xml->asxml(); ?>
定义和用法
addattribute()
函数给 simplexml 元素添加一个属性。
语法
addattribute( _name,value,ns_ );
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接