$client = new SoapClient($url, array("trace" => 1, "exception" => 0));
it's possible to set options trace or exception when we instanciate SoapClient.
Now, in Zend Soap, in src/Client.php line 1051 we can see that trace option is always set to true
and there no way set change its value; and for exception option it seems that there is no default value.
If we try to set trace or exception in options parameters we have an error « Unknown SOAP client option ».
In PHP SOAP documentation http://php.net/manual/fr/class.soapclient.php
$client = new SoapClient($url, array("trace" => 1, "exception" => 0));
it's possible to set options trace or exception when we instanciate SoapClient.
Now, in Zend Soap, in src/Client.php line 1051 we can see that trace option is always set to true and there no way set change its value; and for exception option it seems that there is no default value. If we try to set trace or exception in options parameters we have an error « Unknown SOAP client option ».
Is there another way to set those values ?
Thanks
Best Regards, Pascall