(PHP 5 >= 5.0.1, PHP 7)
SoapVar::SoapVar — Constructeur SoapVar
$data
   , string $encoding
   [, string $type_name
   [, string $type_namespace
   [, string $node_name
   [, string $node_namespace
  ]]]] )Construit un nouvel objet SoapVar.
dataLes données à passer ou à retourner.
encodingL'ID d'encodage, une des constantes XSD_....
type_nameLe nom du type.
type_namespaceLe type de l'espace de noms.
node_nameLe nom du noeud XML.
node_namespaceL'espace de noms du noeud XML.
Exemple #1 Exemple avec SoapVar::SoapVar()
<?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"));
?>