SoapHeader::__construct

(PHP 5, PHP 7, PHP 8)

SoapHeader::__constructSoapHeader 构造函数

描述

public SoapHeader::__construct(
    string $namespace,
    string $name,
    mixed $data = ?,
    bool $mustunderstand = ?,
    string $actor = ?
)

构造一个新的 SoapHeader 对象。

参数

namespace

SOAP 头部元素的命名空间。

name

SoapHeader 对象的名称。

data

SOAP 头部的内容。它可以是 PHP 值或 SoapVar 对象。

mustUnderstand

SOAP 头部元素的 mustUnderstand 属性的值。

actor

SOAP 头部元素的 actor 属性的值。

示例

示例 #1 SoapHeader::__construct() 示例

<?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'));
?>

参见

添加备注

用户贡献的备注

此页面没有用户贡献的备注。
To Top