PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ldap_errno> <ldap_dn2ufn
Last updated: Sat, 24 Mar 2007

view this page in

ldap_err2str

(PHP 4, PHP 5)

ldap_err2str — Convert LDAP error number into string error message

Popis

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.

Seznam parametrů

errno

The error number.

Návratové hodnoty

Returns the error message, as a string.

Příklady

Příklad 887. Enumerating all LDAP error messages

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

Viz také

ldap_errno()
ldap_error()



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

ldap_errno> <ldap_dn2ufn
Last updated: Sat, 24 Mar 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites