Introduction
PHP Manual
PHP Manual»SOAP»SoapHeader

The SoapHeader class

(PHP 5, PHP 7, PHP 8)

Represents a SOAP header.

class SoapHeader {
/* Properties */
public string $name;
public mixed $data = null;
/* Methods */
public function __construct(
    string $namespace,
    string $name,
    mixed $data = ?,
    bool $mustunderstand = ?,
    string $actor = ?
)
}
actor

data

mustUnderstand

name

namespace

Table of Contents

To Top