©
このドキュメントでは、 php中国語ネットマニュアル リリース
(PHP 5 >= 5.0.1)
SoapFault::__construct — SoapFault constructor
$faultcode
, string $faultstring
[, string $faultactor
[, string $detail
[, string $faultname
[, string $headerfault
]]]] )此函数是该函数的别名: SoapFault::SoapFault()
[#1] csnaitsirch at web dot de [2010-04-01 05:04:37]
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
?>