PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<SoapServer->setPersistence()use_soap_error_handler>
Last updated: Mon, 16 Jul 2012

SoapVar->__construct()

(no version information, might be only in CVS)

SoapVar->__construct() --  SoapVar constructor

说明

class SoapVar {

__construct ( mixed data, int encoding [, string type_name [, string type_namespace [, string node_name [, string node_namespace]]]] )

}

Constructs a new SoapVar object.

参数

data

The data to pass or return.

encoding

The encoding ID, one of the XSD_... constants.

type_name

The type name.

type_namespace

The type namespace.

node_name

The XML node name.

node_namespace

The XML node namespace.

例子 1. Some examples

<?php
class SOAPStruct {
   function
SOAPStruct($s, $i, $f)
   {
      
$this->varString = $s;
      
$this->varInt = $i;
      
$this->varFloat = $f;
   }
}
$client = new SoapClient(null, array('location' => "http://localhost/soap.php",
                                    
'uri'      => "http://test-uri/"));
$struct = new SOAPStruct('arg', 34, 325.325);
$soapstruct = new SoapVar($struct, SOAP_ENC_OBJECT, "SOAPStruct", "http://soapinterop.org/xsd");
$client->echoStruct(new SoapParam($soapstruct, "inputStruct"));
?>




<SoapServer->setPersistence()use_soap_error_handler>
 Last updated: Mon, 16 Jul 2012
 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://manual.phpv.net/
Last updated: Thu Jul 7 19:13:47 2005 CST