Constructs a new SoapVar object.
The data to pass or return.
The encoding ID, one of the XSD_... constants.
The type name.
The type namespace.
The XML node name.
The XML node namespace.
Esempio 1. Some examples
<?phpclass 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"));?>
Hosting by: hurra.comGenerated: 2007-01-26 17:56:32