PHP addAttribute() 函數(shù)
實例
給根元素和 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()
函數(shù)給 SimpleXML 元素添加一個屬性。
語法
addAttribute( _name,value,ns_ );
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接
您可能感興趣的文章:- PHP simplexml_import_dom()函數(shù)講解
- PHP count()函數(shù)講解
- PHP getDocNamespaces()函數(shù)講解
- PHP getName()函數(shù)講解
- PHP getNamespaces()函數(shù)講解
- PHP registerXPathNamespace()函數(shù)講解
- PHP children()函數(shù)講解
- PHP attributes()函數(shù)講解
- PHP asXML()函數(shù)講解
- PHP simplexml_load_file()函數(shù)講解