You are here

function ldap_attribute::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.attribute.inc, line 68
Attribute Class and Manipulation Functions

Class

ldap_attribute
LDAP attribute Class

Code

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