SoapHeader::__construct
(PHP 5, PHP 7, PHP 8)
SoapHeader::__construct — SoapHeader-Konstruktor
Beschreibung
string
$namespace
,string
$name
,mixed
$data
= ?,bool
$mustunderstand
= ?,string
$actor
= ?)
Konstruiert ein neues SoapHeader-Objekt.
Parameter-Liste
-
namespace
-
Namensraum des SOAP-Header-Elements.
-
name
-
Name des SOAP-Header-Objekts.
-
data
-
SOAP-Header-Inhalt. Der Inhalt kann ein PHP-Wert oder auch ein SoapVar-Objekt sein.
-
mustUnderstand
-
Wert des
mustUnderstand
-Attributs des SOAP-Header-Elements. -
actor
-
Wert des
actor
-Attributs des SOAP-Header-Elements.
Beispiele
Beispiel #1 SoapHeader::__construct()-Beispiel
<?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',
'Hallo Welt'));
?>
Siehe auch
- SoapClient::__soapCall() - Ruft eine SOAP-Funktion auf
- SoapVar::__construct() - SoapVar-Konstruktor
- SoapParam::__construct() - SoapParam-Konstruktor
- SoapServer::addSoapHeader() - Add a SOAP header to the response