"If FALSE, the standard PHP error handler is used. The default is to use the standard PHP error handler.",
but in declaration:
"bool use_soap_error_handler ([ bool $handler = true ] )".
So, what is the default value of $handler? And where is typo?
(PHP 5, PHP 7, PHP 8)
use_soap_error_handler — SOAP エラーハンドラを使用するかどうかを設定する
この関数は、SOAP サーバーで SOAP エラーハンドラを使用するかどうかを設定します。
それまでに設定されていた値を返します。
true
に設定すると、
SoapServer アプリケーションでのエラーの詳細が
SOAP フォールトメッセージとしてクライアントに送信されます。
false
の場合は PHP の標準エラーハンドラを使います。
デフォルトは、エラーを SOAP フォールトメッセージとしてクライアントに送信します。
enable
true
に設定すると、エラーの詳細をクライアントに送信します。
元の値を返します。
"If FALSE, the standard PHP error handler is used. The default is to use the standard PHP error handler.",
but in declaration:
"bool use_soap_error_handler ([ bool $handler = true ] )".
So, what is the default value of $handler? And where is typo?