我只是想通过 SimpleXMLElement() 使用以下方法生成下一个 xml 代码:
<WebOrders xmlns="http://microsoft.com/wsdl/types/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
但是这样的代码
$webOrders = new SimpleXMLElement('<WebOrders/>');
$webOrders->addAttribute('xmlns', 'http://microsoft.com/wsdl/types/');
$webOrders->addAttribute('xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance');
$webOrders->addAttribute('xmlns:xsd', 'http://www.w3.org/2001/XMLSchema');
使
<WebOrders xsi="http://www.w3.org/2001/XMLSchema-instance" xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://microsoft.com/wsdl/types/"><WebOrder/><WebOrder/></WebOrders>
只要。