SoapFault::__construct

(PHP 5, PHP 7)

SoapFault::__constructSoapFault constructor

Opis

SoapFault::__construct ( string $faultcode , string $faultstring [, string $faultactor [, string $detail [, string $faultname [, string $headerfault ]]]] )

Ta funkcja jest aliasem dla: SoapFault::SoapFault()

add a note add a note

User Contributed Notes 1 note

up
2
csnaitsirch at web dot de
13 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