を使用して、より深い子メモに属性を追加するにはどうすればよいSimpleXMLElement
ですか? 例えば、
$xml = new SimpleXMLElement('<xml/>');
$response = $xml->addChild('response');
$response->addChild('error');
$response->addAttribute('elementid', 100);
$response->addAttribute('message', 'You must not leave this field empty!');
Header('Content-type: text/xml');
print($xml->asXML());
私はこれを得る、
<xml>
<response elementid="100" message="Key name - You must not leave this field empty!">
<error />
</response>
</xml>
でも本当は欲しいのですが、
<xml>
<response>
<error elementid="100" message="Key name - You must not leave this field empty!" />
</response>
</xml>
出来ますか?