Php/docs/soapheader.soapheader
来自菜鸟教程
SoapHeader::SoapHeader
(PHP 5, PHP 7)
SoapHeader::SoapHeader — SoapHeader constructor
说明
SoapHeader::SoapHeader
( string $namespace
, string $name
[, mixed $data
[, bool $mustunderstand
= false
[, string $actor
]]] )
Constructs a new SoapHeader object.
参数
namespace
- The namespace of the SOAP header element.
name
- The name of the SoapHeader object.
data
- A SOAP header's content. It can be a PHP value or a SoapVar object.
mustUnderstand
- Value of the
mustUnderstand
attribute of the SOAP header element. actor
- Value of the
actor
attribute of the SOAP header element.
范例
Example #1 SoapHeader::SoapHeader() example
<?php$client = new SoapClient(null, array('location' => "http://localhost/soap.php%22, 'uri' => "http://test-uri/%22));$client->__soapCall("echoVoid", null, null, new SoapHeader('http://soapinterop.org/echoheader/', 'echoMeStringRequest', 'hello world'));?>
参见
- SoapClient::__soapCall() - Calls a SOAP function
- SoapVar::SoapVar() - SoapVar constructor
- SoapParam::SoapParam() - SoapParam constructor
- SoapServer::addSoapHeader() - Add a SOAP header to the response