php操作xml问题
我用php生成xml如下
php code$xml = ''.\r\n;$xml .= ''.\r\n;$xml .= \t.''.www.163.com.''.\r\n;foreach (array(1,2,3) as $value){ $xml .= \t.''.$value.''.\r\n;}$xml .= ''.\r\n;$sxe = new simplexmlelement($xml);$sxe->asxml(apppath.'user.xml');
生成了user.xml文件,我现在要想添加一个:
李四
该怎么添加啊,前面跟\t ,后面跟\r\n ?
感谢~~
------解决方案--------------------
php code$sxe = new simplexmlelement($xml);$sxe->addchild('username', '李四');$sxe->asxml(apppath.'user.xml');