xml请求soapclient php

时间:2018-01-23 23:28:09

标签: php xml soap wsdl soap-client

我正在尝试使用php soapclient发送请求。

xml part:

<Location>
    <a:Destination i:type="a:Country">
        <a:Id>277</a:Id>
    </a:Destination>
</Location>

我的php请求无效:

$params = array('Location' => array(
                  'type' => 'Country',
                  'Destination' => array(   
                      'Id' => '277'
                   )                        
              )
);

我无法找到如何在请求中发送 i:type =&#34; a:Country&#34; 部分。非常感谢您的帮助。

0 个答案:

没有答案