我有WSDL,PHP皁maxOccurs的無界=
<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
輸出不顯示任何標記爲沒有或flowID
。
如果發送未綁定的數據,請幫忙。
你需要提供更多信息 - WSDL可能會有所幫助,以及您的提交代碼,以及您收到的確切錯誤 – ernie