はじめに
PHP Manual
PHP Manual»SOAP»SoapFault

SoapFault クラス

(PHP 5, PHP 7, PHP 8)

SOAP fault をあらわします。

class SoapFault extends Exception {
/* プロパティ */
public ?string $faultcode = null;
public ?string $faultcodens = null;
public ?string $faultactor = null;
public mixed $detail = null;
public ?string $_name = null;
public mixed $headerfault = null;
public string $lang = "";
/* 継承したプロパティ */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* メソッド */
public function __construct(
    array|string|null $code,
    string $string,
    ?string $actor = null,
    mixed $details = null,
    ?string $name = null,
    mixed $headerFault = null,
    string $lang = ""
)
public function __toString(): string
/* 継承したメソッド */
final public function Exception::getMessage(): string
final public function Exception::getPrevious(): ?Throwable
final public function Exception::getCode(): int
final public function Exception::getFile(): string
final public function Exception::getLine(): int
final public function Exception::getTrace(): array
final public function Exception::getTraceAsString(): string
public function Exception::__toString(): string
private function Exception::__clone(): void
}
_name

detail

faultactor

faultcode

faultcodens

faultstring

headerfault

lang
Soap 1.2 Reason Text の xml:lang 属性。
バージョン 説明
8.5.0 SoapFault::lang が追加されました。

目次

To Top