我需要爲存儲在數據庫中的xml元素添加一個新屬性。這不是一個完整的XML,而只是數據庫中的XML元素。如何在不使用xml頭的情況下向PHP中的XML元素添加屬性?
當我這樣做,
$node_xml = simplexml_load_string('<node name="nodeA">this is a node</node>');
$node_xml->addAttribute('newattrib', "attribA");
$res_xml = $node_xml->asXML();
我得到$res_xml
爲:
"<?xml version=\"1.0\"?>\n<node name=\"nodeA\" newattrib=\"attribA\">this is a node</node>\n"
如何消除<?xml version=\"1.0\"?>
部分沒有做一個字符串操作?
的[刪除XML版本標籤時在PHP創建XML]可能的複製(http://stackoverflow.com/questions/5947695/remove-xml-version-在php中創建標籤時) – splash58
該問題/答案不涉及添加屬性。 – devnull
@ splash58看到了。但不能在字符串操作中添加屬性 – devnull