php8.5
Home/ Manual/ ldap / functions/ ldap_err2str

ldap_err2str

PHP function Edit on GitHub ✎

(PHP 4, PHP 5, PHP 7, PHP 8)

Convert LDAP error number into string error message

Description

ldap_err2str(int $errno): string

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

Enumerating all LDAP error messages

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

See Also

Source: reference/ldap/functions/ldap-err2str.xml · from the official PHP manual (php/doc-en)