(PHP 5 >= 5.0.1, PHP 7)
SoapHeader constructor
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:
SoapHeader::SoapHeader() example
1 2 3 4 5 6 7 8 | <?php $client ->__soapCall( "echoVoid" , null, null, 'echoMeStringRequest' , 'hello world' )); ?> |
See also:
Please login to continue.