php soap maxoccurs = unbounded

use*_*826 6 php soap wsdl

我有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"/>
Run Code Online (Sandbox Code Playgroud)

我试图发送数组如下(var_dump).

object(merchantDetails)#3 
  ["did"]=>
  array(1) {
    [0]=>
    string(8) "81985801"
  }
  ["flowid"]=>
  array(1) {
    [0]=>
    string(16) "MerchantMOTOMID1"
  }
Run Code Online (Sandbox Code Playgroud)

但是__getLastRequest输出没有显示任何标记flowID.

如果发送未绑定的数据,请帮忙.

Raj*_*epe 0

将 maxOccurs 设置为有界

准确地说,请发布您的完整源代码