PHP SimpleXML,如何设置属性?

pun*_*bit 11 php attributes simplexml set

如果你有类似的东西,

<hello id="1" name="myName1">
 <anotherTag title="Hello">
 </anotherTag>
</hello>
<hello id="2" name="myName2">
 <anotherTag title="Hi">
 </anotherTag>
</hello>
Run Code Online (Sandbox Code Playgroud)

如何将例如hello id 2的属性更改为name ="William"?或者标题嗨你好?

非常感谢你的关注,H'

Gor*_*don 18

请记住,您的XML文档必须具有根元素:

$xml = simplexml_load_string("<root>$string</root>");
$xml->hello[1]['name'] = 'John Doe';
$xml->hello[1]->anotherTag['title'] = 'Hello';
echo $xml->asXml();
Run Code Online (Sandbox Code Playgroud)

保存文件使用 asXML($filename)