PHP SoapClient creating XML references for identical elements, makes it unacceptable for service

前端 未结 4 980
北恋
北恋 2020-12-19 08:17

I am working on a SOAP client in PHP, and the calls are going through to the service fine, with the exception of calls where there are elements that are identical to each ot

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-19 08:59

    SoapClient makes a reference only when you use the same object on multiple XML nodes. Make for each place a new object if you do not want the references.

提交回复
热议问题