English 中文(简体)
• 如何为Xsd制造肥皂物体: 类型
原标题:How to create soapvar object for xsd:anyType
  • 时间:2012-01-12 09:43:51
  •  标签:
  • php
  • soap

谁能解释如何在实验室中分配任何使用肥皂的类辅助器的类型?

  <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>

For example:

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

在通过上述阵列供用户使用时,在网关的肥料中,它会退回“不知”的例外情况。

问题回答

海因最终发现我的问题,它基于的是国名航天高尔问题,而且我也利用了这一问题。

$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 )); 

and got solution from yodlee server thanks to all





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签