这是我的代码,
$row=array(username=>'username',password=>'password');
$var=array_flip($row);
$xml = new SimpleXMLElement('<root/>');
array_walk_recursive($var, array ($xml, 'addChild'));
$result= $xml->asXML();
如果用户名和密码不同,分别说“abcd”和“efgh”,xml 如下所示:
<root>
<username>abcd</username>
<password>efgh</password>
</root>
但如果它们相同,则说“abcd”,xml 看起来像这样:
<root>
<password>abcd</password>
</root>
我希望它应该显示为
<root>
<username>abcd</username>
<password>abcd</password>
</root>
那么我该如何解决呢?