"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 — Establecer si se desea utilizar el manejador de errores de SOAP
Esta función establece si utilizar o no el manejador de errores de SOAP en el servidor de SOAP.
Devolverá el valor anterior. Si está definido a true
, los datos de los errores en una
aplicación SoapServer serán enviados a los clientes
como un mensaje de fallo SOAP.
Si es false
, el manejador de errores PHP será usado.
Lo predeterminado es enviar el error al cliente como un mensaje de fallo de SOAP.
handler
Establecerlo a true
para enviar información de los errores al cliente.
Devuelve el valor original
"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?