SoapFault::__construct
(PHP 5, PHP 7, PHP 8)
SoapFault::__construct — SoapFault コンストラクタ
説明
public SoapFault::__construct(
array|string|null
string
?string
mixed
?string
mixed
)
array|string|null
$code
,string
$string
,?string
$actor
= null
,mixed
$details
= null
,?string
$name
= null
,mixed
$headerFault
= null
)
このクラスは、PHP ハンドラから SOAP
フォールトレスポンスを送信した場合に有用です。
faultcode
, faultstring
,
faultactor
および detail
は SOAP フォールトの標準的な要素です。
パラメータ
例
例1 いくつかの例
<?php
function test($x)
{
return new SoapFault("Server", "Some error message");
}
$server = new SoapServer(null, array('uri' => "http://test-uri/"));
$server->addFunction("test");
$server->handle();
?>
SOAP フォールトをスローするために PHP の例外機構を使用することができます。
例2 いくつかの例
<?php
function test($x)
{
throw new SoapFault("Server", "Some error message");
}
$server = new SoapServer(null, array('uri' => "http://test-uri/"));
$server->addFunction("test");
$server->handle();
?>
+add a note
User Contributed Notes 1 note
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
?>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google