Clarification of the ldap_read command syntax:
If you just want to pull certain attributes from an object and you already know it's dn, the ldap_read command can do this as illustrated below. It will be less overhead than ldap_search.
The string base_dn which is normally used to set the top context for a recursive ldap_search is used slightly differently with this command. It is used to specify the actual object with the full dn. (Hopefully this saves someone else a couple hours trying this command out.)
<?php
$ds = ldap.myserver.com // your ldap server
$dn = "cn=username,o=My Company, c=US"; //the object itself instead of the top search level as in ldap_search
$filter="(objectclass=*)"; // this command requires some filter
$justthese = array("ou", "sn", "givenname", "mail"); //the attributes to pull, which is much more efficient than pulling all attributes if you don't do this
$sr=ldap_read($ds, $dn, $filter, $justthese);
$entry = ldap_get_entries($ds, $sr);
echo $entry[0]["mail"][0] . "is the email address of the cn your requested";
echo $entry[0]["sn"][0] . "is the sn of the cn your requested";
ldap_close($ds);
?>
This prints out the specified users mail and surname for example.ldap_read
Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.
ldap_read
Референца за `function.ldap-read.php` со подобрена типографија и навигација.
ldap_read
(PHP 4, PHP 5, PHP 7, PHP 8)
ldap_read — Прочитај запис
= NULL
LDAP\Connection|array
$ldap,array|string
$base,array|string
$filter,array
$attributes = [],int
$attributes_only = 0,int
$sizelimit = -1,int
$timelimit = -1,int
$deref = LDAP_DEREF_NEVER,?array
$controls = null): LDAP\Result|array|false
Извршува пребарување за наведено filter на директориумот со опсег LDAP_SCOPE_BASE. Така е еквивалентно на читање запис од директориумот.
It is also possible to perform parallel searches. In this case, the first argument should be an array of
LDAP\Connection instances, rather than a single one. If the searches should not all use the same base DN and filter, an array of base DNs and/or an array of filters can be passed as arguments instead. These arrays must be of the same size as the LDAP\Connection instances array, since the first entries of the arrays are used for one search, the second entries are used for another, and so on. When doing parallel searches an array of LDAP\Result instances is returned, except in case of error, when the return value will be false.
Параметри
ldap-
Еден LDAP\Connection инстанца, вратена од ldap_connect().
base-
The base DN for the directory.
filter-
Празен филтер не е дозволен. Ако сакате да ги добиете апсолутно сите информации за овој запис, користете филтер од
objectClass=*. Ако знаете кои типови записи се користат на серверот за директориуми, може да користите соодветен филтер какоobjectClass=inetOrgPerson. attributes-
Низа од потребните атрибути, на пр. array("mail", "sn", "cn"). Имајте предвид дека „dn“ секогаш се враќа без оглед на тоа кои типови атрибути се бараат.
Using this parameter is much more efficient than the default action (which is to return all attributes and their associated values). The use of this parameter should therefore be considered good practice.
attributes_only-
Should be set to 1 if only attribute types are wanted. If set to 0 both attributes types and attribute values are fetched which is the default behaviour.
sizelimit-
Enables you to limit the count of entries fetched. Setting this to 0 means no limit.
Забелешка:
This parameter can NOT override server-side preset sizelimit. You can set it lower though.
Some directory server hosts will be configured to return no more than a preset number of entries. If this occurs, the server will indicate that it has only returned a partial results set. This also occurs if you use this parameter to limit the count of fetched entries.
timelimit-
Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit.
Забелешка:
This parameter can NOT override server-side preset timelimit. You can set it lower though.
deref-
Овој параметар НЕ МОЖЕ да ја надвладее временската граница поставена на серверот. Сепак, можете да ја поставите пониско.
-
LDAP_DEREF_NEVERСпецифицира како нонaметата треба да се третираат за време на пребарувањето. Може да биде една од следниве опции: - (стандардно) нонaметата никогаш не се дереференцираат. - нонaметата треба да се дереференцираат за време на пребарувањето, но не и при лоцирање на основниот објект на пребарувањето. - нонaметата треба да се дереференцираат при лоцирање на основниот објект, но не и за време на пребарувањето. - нонaметата секогаш треба да се дереференцираат. -
LDAP_DEREF_SEARCHINGда се испрати со барањето. -
LDAP_DEREF_FINDINGинстанца, низа од -
LDAP_DEREF_ALWAYSинстанци, или
-
controls-
Низа од LDAP контроли сега е nullable; претходно, стандардно беше
Вратени вредности
Враќа LDAP\Result Примерот подолу ги презема организациската единица, презимето, името и адресата на е-пошта за сите лица во "Мојата компанија" каде што презимето или името го содржи поднизот LDAP\Result . Овој пример користи буловски филтер за да му каже на серверот да бара информации во повеќе од еден атрибут. false при неуспех.
Дневник на промени
| Верзија | = NULL |
|---|---|
| 8.1.0 |
На ldap параметарот очекува LDAP\Connection
инстанца сега; претходно, валидна ldap link resource се очекуваше.
|
| 8.1.0 | Враќа LDAP\Result инстанца сега; претходно, а resource . |
| 8.0.0 |
controls Пример #1 LDAP пребарување [].
|
| 7.3.0 |
Поддршка за controls added
|
Белешки од корисници 5 белешки
In the previous example the
$ds = ldap.myserver.com // your ldap server
should be
$ds = ldap_connect( "ldap.myserver.com" ) ; // your ldap serverThe array in the attributes parameter needs to be an indexed array with numeric keys in ascending order. Like this:
Array
(
[0] => this
[1] => is
[2] => a
[3] => test
)
If there are missing keys in the array, then no result will be returned. This will not work:
Array
(
[0] => this
[1] => is
[3] => test
)For those debugging a wrapper, akin to symfony's client wrapper for these functions and since there is crap documentation on a full cycle of pulling a single record vs multiple, etc.
For this one:
YOU MUST call ldap_get_entries after this function call.
AND PLEASE if you implement a wrapper, prime it with the initial entry else it makes no sense to execute without returning something easily visible as successful.
WHEN query->execute() and you get a collection.. make sure the entry field in the collection has at least the first entry primed.. wasted so much time because it was looking empty.
AND this entire adapter needs to be wrapped with a less retarded usage pattern via an STL lib wrapper, mysticism( bad design) begone.
123.. not 4290234~"wds
Thanks for your timeThis differs from ldap_search() by not recursing down to sub-entries. if you know the dn of the item you're looking for and only want info on that entry, use ldap_read() and pass it the full dn of the item you want.
It also seems that you'd alway want something like objectclass=* for the filter, since you're only searching on one entry.