Forum und email

SoapVar->__construct()

(No version information available, might be only in CVS)

SoapVar->__construct() — SoapVar コンストラクタ

説明

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

新規 SoapVar オブジェクトを生成します。

パラメータ

data

渡すもしくは返すデータ

encoding

エンコーディング ID。XSD_... 定数のうちの一つ。

type_name

型名

type_namespace

型の名前空間

node_name

XML ノードの名前

node_namespace

XML ノードの名前空間

Example#1 いくつかの例

<?php
class SOAPStruct {
    function 
SOAPStruct($s$i$f)
    {
        
$this->varString $s;
        
$this->varInt $i;
        
$this->varFloat $f;
    }
}
$client = new SoapClient(null, array('location' => "https://localhost/soap.php",
                                     
'uri'      => "https://test-uri/"));
$struct = new SOAPStruct('arg'34325.325);
$soapstruct = new SoapVar($structSOAP_ENC_OBJECT"SOAPStruct""https://soapinterop.org/xsd");
$client->echoStruct(new SoapParam($soapstruct"inputStruct"));
?>