有人能解释一下如何在php中使用soapvar为anytype参数分配类型吗?

  <complexType name="Entry">
            <sequence>
                <element name="key" nillable="true" type="xsd:anyType" minOccurs="0" />
                <element name="value" nillable="true" type="xsd:anyType" minOccurs="0" />
            </sequence>
        </complexType>

例如:
$arr=array('key'=>new SoapVar('EMAIL_ADDRESS',SOAP_ENC_OBJECT,'xsd:anyType'),'value'=>new SoapVar('[email protected]',SOAP_ENC_OBJECT,'xsd:anyType'));

当在yodlee sdk中沿soapclient在register user中传递上述userprofile数组时,返回“未知”异常。

最佳答案

hai我终于发现我的问题是基于名称空间url的问题,我使用了这个

$arr=array('key'=>new SoapVar('EMAIL_ADDRESS',XSD_ANYTYPE,'string','http://www.w3.org/2001/XMLSchema','key'),'value'=>new SoapVar('[email protected]',XSD_ANYTYPE,'string','http://www.w3.org/2001/XMLSchema','value'));

感谢所有人

10-04 18:53