How to Convert below nested xml into array? [duplicate]
I need to convert this xml into array and then i have to pass that array as a parameter in _soapCall("OTA_HotelAvailRQ",array); But i don't know how to convert this xml into array. Please help me.
开发者_开发知识库 EUR EN__soapCall()
is a low level function. You are not calling it directly, right? If you do call it directly keep in mind that:
- The arguments in the array must have the same order that the SOAP endpoint expects
The array of arguments should be a flat one (no nested arrays)
精彩评论