(PHP 5, PHP 7, PHP 8)
SoapVar::__construct — SoapVar コンストラクタ
$data,$encoding,$typeName = null,$typeNamespace = null,$nodeName = null,$nodeNamespace = null新しい SoapVar オブジェクトを生成します。
data渡すもしくは返すデータ
encoding
       エンコーディング ID。XSD_... 定数のうちの一つ。
      
type_name型の名前
type_namespace型の名前空間
node_nameXML ノードの名前
node_namespaceXML ノードの名前空間
| バージョン | 説明 | 
|---|---|
| 8.0.3 | typeName,typeNamespace,nodeName,nodeNamespaceは、nullable になりました。 | 
例1 SoapVar::__construct() の例
<?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"));
?>