SoapVar::SoapVar

(PHP 5, PHP 7)

SoapVar::SoapVarSoapVar-Konstruktor

Beschreibung

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

Erstellt ein neues SoapVar-Objekt.

Parameter-Liste

data

Die zu übergebenden oder zurückzugebenden Daten.

encoding

Die Encoding-ID, eine der XSD_...-Konstanten.

type_name

Der Type-Name.

type_namespace

Der Type-Namespace.

node_name

Der XML-Nodename.

node_namespace

Der XML-Node-Namespace.

Beispiele

Beispiel #1 SoapVar::SoapVar()-Beispiel

<?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'34325.325);
$soapstruct = new SoapVar($structSOAP_ENC_OBJECT"SOAPStruct""http://soapinterop.org/xsd");
$client->echoStruct(new SoapParam($soapstruct"inputStruct"));
?>

Siehe auch