September 2001
Intermediate to advanced
768 pages
32h 45m
English
string ldap_err2str(int errno) Returns the text explanation for the given LDAP error code.
Returns:
String representation of the numeric error code
Description:
Converts the integer error code into the correct LDAP error explanation. Used for the codes returned from ldap_errno().
Availability:
UNIX/Linux, Windows
Version:
3.0.13+, 4.0RC2+
Example:
$errno = ldap_errno($ldapid); $error_text = ldap_err2str($errno); echo "Error $errno: $error_text\n"; |
Read now
Unlock full access