sabre-io / xml

sabre/xml is an XML library that you may not hate.
http://sabre.io/xml/
BSD 3-Clause "New" or "Revised" License
516 stars 77 forks source link

Serializer wihout namespace #156

Open victorgp89 opened 5 years ago

victorgp89 commented 5 years ago

Hi,

image

I need to make this XML as you can see it doesn't have namespace, it's posible?

When I tried this:

image

The result is : image

I want to avoid xmlns=""

Thanks for advance

evert commented 5 years ago

If you register the empty namespace, you can see the xmlns appear just once in the root element, and not in every child element. Like this:

$service->namespaceMap[''] = '';

Does that help?