(PHP 5, PHP 7, PHP 8)
SoapHeader::__construct — SoapHeader constructor
$namespace,$name,$data = ?,$mustunderstand = ?,$actor = ?Constructs a new SoapHeader object.
namespaceThe namespace of the SOAP header element.
nameThe name of the SoapHeader object.
dataA 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.
      
示例 #1 SoapHeader::__construct() example
<?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'));
?>
