SOAP 関数
PHP Manual

SoapHeader->__construct

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

SoapHeader->__construct SoapHeader コンストラクタ

説明

SoapHeader
__construct ( string $namespace , string $name [, mixed $data [, bool $mustUnderstand [, mixed $actor ]]] )

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

パラメータ

namespace

SOAP ヘッダ要素の名前空間

name

SOAP ヘッダ要素の名前

data

SOAP ヘッダの内容。PHP の値もしくは SoapVar オブジェクトです。

mustUnderstand

SOAP ヘッダ要素の mustUnderstand 属性の値

actor

SOAP ヘッダ要素の actor 属性の値

例1 基本例

<?php
$client 
= new SoapClient(null, array('location' => "http://localhost/soap.php",
                                     
'uri'      => "http://test-uri/"));
$client->__soapCall("echoVoid"nullnull,
                new 
SoapHeader('http://soapinterop.org/echoheader/',
                               
'echoMeStringRequest',
                               
'hello world'));
?>

例2 複雑な型と属性

<?php
$client 
= new SoapClient('http://example.com/webservice.asmx?wsdl');

$attributes = array('attr1' => 'value1''attr2' => 'value2');

// type_name と type_namespace は
// 属性の指定時に指定しておく必要があります
$complex_type = new SOAPVar($attributes
                        
SOAP_ENC_OBJECT
                        
'ComplexType'// type_name
                        
'http://www.example.com/namespace'// type_namespace
                        
'complex_type',
                        
'http://www.example.com/namespace');


$header = new SOAPHeader('http://www.example.com/namespace',
                         
'ComplexType',
                         
$complex_type,
                         
true);

$client->__soapCall("someFunc"nullnull$header);
?>

参考


SOAP 関数
PHP Manual