Go to the source code of this file.
Data Structures | |
| class | ilBMFServer |
Namespaces | |
| namespace | SOAP |
ilBMFBase Common base class of all Soap lclasses | |
Functions | |
| ilBMFServerErrorHandler ($errno, $errmsg, $filename, $linenum, $vars) | |
Variables | |
| $soap_server_fault = null | |
| ilBMFServerErrorHandler | ( | $ | errno, | |
| $ | errmsg, | |||
| $ | filename, | |||
| $ | linenum, | |||
| $ | vars | |||
| ) |
Definition at line 30 of file class.ilBMFServer.php.
References $soap_server_fault.
{
// the error handler should ignore '0' errors, eg. hidden by @ - see the
// set_error_handler manual page.. (thanks to Alan Knowles)
if (!$errno || $errno == E_NOTICE) {
return;
}
global $soap_server_fault;
$detail = "Errno: $errno\nFilename: $filename\nLineno: $linenum\n";
// XXX very strange behaviour with error handling if we =& here.
$soap_server_fault = new ilBMFFault($errmsg, 'Server', 'PHP', $detail);
}
| $soap_server_fault = null |
Definition at line 29 of file class.ilBMFServer.php.
Referenced by ilBMFServer::callMethod(), and ilBMFServerErrorHandler().
1.7.1