これは私のコードです、
$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>
では、どうすればそれを解決できますか?