(PHP 5 >= 5.0.1)
SoapHeader::SoapHeader — SoapHeader コンストラクタ
新規 SoapHeader オブジェクトを生成します。
SOAP ヘッダ要素の名前空間
SOAP ヘッダ要素の名前
SOAP ヘッダの内容。PHP の値もしくは SoapVar オブジェクトです。
SOAP ヘッダ要素の mustUnderstand 属性の値
SOAP ヘッダ要素の actor 属性の値
例1 SoapHeader::SoapHeader() の例
<?php
$client = new SoapClient(null, array('location' => "http://localhost/soap.php",
'uri' => "http://test-uri/"));
$client->__soapCall("echoVoid", null, null,
new SoapHeader('http://soapinterop.org/echoheader/',
'echoMeStringRequest',
'hello world'));
?>