PHP Doku:: SoapHeader-Konstruktor - soapheader.construct.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzWeb ServicesSOAPThe SoapHeader classSoapHeader->__construct()

Ein Service von Reinhard Neidl - Webprogrammierung.

The SoapHeader class

<<The SoapHeader class

SoapHeader::SoapHeader>>

SoapHeader->__construct()

(PHP 5 >= 5.0.1)

SoapHeader->__construct() SoapHeader-Konstruktor

Beschreibung

SoapHeader::__construct ( string $namespace , string $name [, mixed $data [, bool $mustUnderstand [, mixed $actor ]]] )

Erzeugt ein neues SoapHeader-Objekt.

Parameter-Liste

namespace

Namensraum des SOAP-Header-Elements.

name

Name des SOAP-Header-Elements.

data

SOAP-Header-Inhalt. Der Inhalt kann ein PHP-Wert oder auch ein SoapVar-Objekt sein.

mustUnderstand

Wert des mustUnderstand Attributes des SOAP-Header-Elements.

actor

Wert des actor Attributes des SOAP-Header-Elements.

Beispiele

Beispiel #1 Beispiele

<?php
$client 
= new SoapClient(null, array('location' => "http://localhost/soap.php",
                                     
'uri'      => "http://test-uri/"));
$client->__soapCall("echoVoid"nullnull,
                    new 
SoapHeader('http://soapinterop.org/echoheader/',
                                   
'echoMeStringRequest',
                                   
'hello world'));
?>


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)