我想发送一个xml作为字符串,而不是发送一个参数数组
代替
$response = $client->__soapCall("Quote", array($xml));
喜欢
$response = $client->__soapCall("Quote", $xml);
答案 0 :(得分:0)
你不能。至少不使用PHP SoapClient https://secure.php.net/manual/en/class.soapclient.php
您为什么还要这么做?只需发送带有xml的数组即可。