SoapFault::__construct

(PHP 5, PHP 7)

SoapFault::__constructSoapFault constructor

Descrierea

public SoapFault::__construct ( array|string|null $code , string $string [, string|null $actor = null [, mixed $details = null [, string|null $name = null [, mixed $headerFault = null ]]]] )

Această funcție este pseudonim pentru: SoapFault::SoapFault()

add a note add a note

User Contributed Notes 1 note

up
2
csnaitsirch at web dot de
14 years ago
The first Parameter of the constructor, the faultcode, of SoapFault must be a string. Otherwise it will lead to an error.

<?php
throw new SoapFault(1, "Error message!"); // wrong
throw new SoapFault("1", "Error message!"); // right
?>
To Top