ldap_first_entry

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

ldap_first_entryReturn first result id

Descrição

ldap_first_entry(LDAP\Connection $ldap, LDAP\Result $result): LDAP\ResultEntry|false

Returns the entry identifier for first entry in the result. This entry identifier is then supplied to ldap_next_entry() routine to get successive entries from the result.

Entries in the LDAP result are read sequentially using the ldap_first_entry() and ldap_next_entry() functions.

Parâmetros

ldap

Uma instância de LDAP\Connection, retornada por ldap_connect().

result

Uma instância de LDAP\Result, retornada por ldap_list() ou ldap_search().

Valor Retornado

Returns an LDAP\ResultEntry instance, ou false em caso de falha.

Registro de Alterações

Versão Descrição
8.1.0 O parâmetro ldap agora espera uma instância de LDAP\Connection; anteriormente, um resource ldap link válido era esperado.
8.1.0 O parâmetro result agora espera uma instância de LDAP\Result; anteriormente, um resource ldap result válido era esperado.
8.1.0 Agora retorna uma instância de LDAP\ResultEntry; anteriormente, um resource era retornado.

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top