Source of: /manual/en/function.use-soap-error-handler.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.soap.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'function.use-soap-error-handler.php',
1 => 'use_soap_error_handler',
),
'up' =>
array (
0 => 'ref.soap.php',
1 => 'SOAP Functions',
),
'prev' =>
array (
0 => 'function.is-soap-fault.php',
1 => 'is_soap_fault',
),
'next' =>
array (
0 => 'class.soapclient.php',
1 => 'SoapClient',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="function.use-soap-error-handler" class="refentry">
<div class="refnamediv">
<h1 class="refname">use_soap_error_handler</h1>
<p class="verinfo">(Unknown)</p><p class="refpurpose"><span class="refname">use_soap_error_handler</span> — <span class="dc-title">Set whether to use the SOAP error handler</span></p>
</div>
<a name="function.use-soap-error-handler.description"></a><div class="refsect1 description">
<h3 class="title">Description</h3>
<div class="methodsynopsis dc-description">
<span class="type">bool</span> <span class="methodname"><b>use_soap_error_handler</b></span>
([ <span class="methodparam"><span class="type">bool</span> <tt class="parameter">$handler</tt></span>
] )</div>
<p class="para rdfs-comment">
This function sets whether or not to use the SOAP error handler in the SOAP server.
It will return the previous value. If set to <b><tt class="constant">TRUE</tt></b>, details of errors
in a <a href="class.soapserver.php" class="classname">SoapServer</a> application will be sent to the clients.
If <b><tt class="constant">FALSE</tt></b>, no information will be sent.
</p>
</div>
<a name="function.use-soap-error-handler.parameters"></a><div class="refsect1 parameters">
<h3 class="title">Parameters</h3>
<p class="para">
</p><dl>
<dt class="varlistentry">
<span class="term"><i><tt class="parameter">handler</tt></i>
</span>
</dt><dd class="listitem">
<p class="para">
Set to <b><tt class="constant">TRUE</tt></b> to send error details to clients.
</p>
</dd>
</dl>
<p>
</p>
</div>
<a name="function.use-soap-error-handler.returnvalues"></a><div class="refsect1 returnvalues">
<h3 class="title">Return Values</h3>
<p class="para">
Returns <b><tt class="constant">TRUE</tt></b> on success or <b><tt class="constant">FALSE</tt></b> on failure.
</p>
</div>
<a name="function.use-soap-error-handler.seealso"></a><div class="refsect1 seealso">
<h3 class="title">See Also</h3>
<p class="para">
</p><ul class="simplelist">
<li class="member"><a href="function.set-error-handler.php" class="function" rel="rdfs-seeAlso">set_error_handler()</a> - Sets a user-defined error handler function</li>
<li class="member"><a href="function.set-exception-handler.php" class="function" rel="rdfs-seeAlso">set_exception_handler()</a> - Sets a user-defined exception handler function</li>
</ul><p>
</p>
</div>
</div><?php manual_footer(); ?>