dismiss Step into the future! Click here to switch to the beta php.net site
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ldap_errno> <ldap_dn2ufn
[edit] Last updated: Fri, 28 Jun 2013

view this page in

ldap_err2str

(PHP 4, PHP 5)

ldap_err2strConvert LDAP error number into string error message

Description

string ldap_err2str ( int $errno )

Returns the string error message explaining the error number errno. While LDAP errno numbers are standardized, different libraries return different or even localized textual error messages. Never check for a specific error message text, but always use an error number to check.

Parameters

errno

The error number.

Return Values

Returns the error message, as a string.

Examples

Example #1 Enumerating all LDAP error messages

<?php
  
for ($i=0$i<100$i++) {
    
printf("Error $i: %s<br />\n"ldap_err2str($i));
  }
?>

See Also

  • ldap_errno() - Return the LDAP error number of the last LDAP command
  • ldap_error() - Return the LDAP error message of the last LDAP command



add a note add a note User Contributed Notes ldap_err2str - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites