我有 WSDL,
<xs:complexType name="merchantDetails"><xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="did" nillable="true" type="xs:string"/>
<xs:element maxOccurs="unbounded" minOccurs="0" name="flowid" nillable="true" type="xs:string"/>
我正在尝试按如下方式发送数组(var_dump)。
object(merchantDetails)#3
["did"]=>
array(1) {
[0]=>
string(8) "81985801"
}
["flowid"]=>
array(1) {
[0]=>
string(16) "MerchantMOTOMID1"
}
但是__getLastRequest
输出没有显示 did 或 的任何标签flowID
。
如果如何发送未绑定的数据,请提供帮助。