You are here

function ldap_authentication::error_handler in Lightweight Directory Access Protocol (LDAP) 6

Error Handling Method

Parameters

int errno: The level of the error raised.

string errstr: The error message.

string errfile: The filename that the error was raised in.

int errline: The line number the error was raised at.

array errcontext: An array of every variable that existed in the scope the error was triggered in.

Return value

bool Always return TRUE to avoid PHP's builtin handler.

File

includes/ldap.authentication.inc, line 57
Defines the authentication class and related functions.

Class

ldap_authentication
LDAP Authentication Class

Code

function error_handler($errno, $errstr, $errfile, $errline, $errcontext) {
  return TRUE;
}