添加xml属性documentname

时间:2015-10-30 13:36:07

标签: simplexml

我正在将订单导出到xml 我在XML的标题中写道

 $xml = new SimpleXMLElement('<Document></Document>');
    $xml->addAttribute('documentname','DCustomers');
    $xml->addAttribute('xmlns','http://www.microarea.it/XTech/1.0.0/XMLSchema');

xml结果是

 <?xml version="1.0"?>
    <Document xmlns="http://www.microarea.it/XTech/1.0.0/XMLSchema" documentname="DCustomers">

但标签反转我需要以这种方式使用documentname =“DCustomers”标签

 <?xml version="1.0"?>
    <Document documentname="DCustomers" xmlns="http://www.microarea.it/XTech/1.0.0/XMLSchema">

我该怎么办?非常感谢!

0 个答案:

没有答案