(PHP 5 >= 5.0.1, PHP 7)
SoapVar constructor
SoapVar::SoapVar ( mixed $data, string $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:
SoapVar::SoapVar() example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <?php class SOAPStruct { function SOAPStruct( $s , $i , $f ) { $this ->varString = $s ; $this ->varInt = $i ; $this ->varFloat = $f ; } } $struct = new SOAPStruct( 'arg' , 34, 325.325); $client ->echoStruct( new SoapParam( $soapstruct , "inputStruct" )); ?> |
See also:
Please login to continue.