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: Thu, 26 Jun 2008

SoapVar->__construct()

(No version information available, might be only in CVS)

SoapVar->__construct() — SoapVar constructor

Description

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

Constructs a new SoapVar object.

Parameters

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.

Examples

Example #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"));
?>



add a noteadd a note User Contributed Notes
SoapVar constructor
There are no user contributed notes for this page.




<SoapServer->setPersistence()use_soap_error_handler>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs