首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

SoapHeader::SoapHeader

(PHP 5 >= 5.0.1, PHP 7)

SoapHeader::SoapHeader — SoapHeader constructor

Description

代码语言:javascript
复制
SoapHeader::SoapHeader ( string $namespace , string $name [, mixed $data [, bool $mustunderstand = false [, string $actor ]]] )

Constructs a new SoapHeader object.

Parameters

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.

Examples

Example #1 SoapHeader::SoapHeader() example

代码语言:javascript
复制
<?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'));
?>

See Also

  • SoapClient::__soapCall() - Calls a SOAP function
  • SoapVar::SoapVar() - SoapVar constructor
  • SoapParam::SoapParam() - SoapParam constructor
  • SoapServer::addSoapHeader() - Add a SOAP header to the response

← SoapHeader::__construct

SoapParam →

代码语言:txt
复制
 ? 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com