PHP.nl

ldap_parse_result

ldap_parse_result

Extract information from result

bool **ldap_parse_result** LDAP\Connection $ldap LDAP\Result $result int $error_code string $matched_dn string $error_message array $referrals array $controls

Parses an LDAP search result.

ldapldap.parameter.ldap

resultldap.parameter.result

error_code A reference to a variable that will be set to the LDAP error code in the result, or if no error occurred. 0

matched_dnA reference to a variable that will be set to a matched DN if one was recognised within the request, otherwise it will be set to null.

error_messageA reference to a variable that will be set to the LDAP error message in the result, or an empty string if no error occurred.

referrals A reference to a variable that will be set to an set to all of the referral strings in the result, or an empty array if no referrals were returned. array

controls An of LDAP Controls which have been sent with the response. array

return.success

Voorbeeld: example

<?php
$result = ldap_search($ldap, "cn=userref,dc=my-domain,dc=com", "(cn=user*)");
$errcode = $dn = $errmsg = $refs =  null;
if (ldap_parse_result($ldap, $result, $errcode, $dn, $errmsg, $refs)) {
    // do something with $errcode, $dn, $errmsg and $refs
}
?>