The code listed below (posted by jeff) to print all attributes with their values is wrong. It keeps trying to index the $entry variable, which is a resource identifier, not an array. All the required information is in the return value of ldap_get_attributes, $attrs.
So:
$entry = ldap_next_entry($conn,$first_entry);
$attrs = ldap_get_attributes($conn,$entry);
for ($i=0; $i < $attrs["count"]; $i++) {
$attr_name = $attrs[$i];
for ($j=0; $j < $attrs[$attr_name]["count"]; $j++) {
echo "$attr_name: ".$attrs["$attr_name"][$j]."\n";
}
}
ldap_next_entry
(PHP 4, PHP 5)
ldap_next_entry — Obtiene la siguiente entrada de un resultado
Descripción
Devuelve el identificador de la siguiente entrada del resultado. Las entradas deben haber sido leidas previamente con la función ldap_first_entry(). Si no hay más entradas en el resultado, la función devuelve FALSE.
La función ldap_next_entry() se emplea para obtener las entradas almacenadas en un resultado. Si se realizan llamadas sucesivas a la función ldap_next_entry(), se devuelven las entradas una a una hasta que ya no queden más entradas. La primera llamada a ldap_next_entry() se realiza después de llamar a ldap_first_entry(), siendo el parámetro identificador_de_entrada_de_resultado el valor devuelto por la función ldap_first_entry().
Vea también ldap_get_entries()
ldap_next_entry
08-Jan-2006 04:43
11-Jun-2003 05:24
dahoo,
Your code to list the attributes of an entry isn't as complete as it could be--just listing the $result["attr"][0] value won't handle multiple-valued attributes. Instead, you should have something like:
$entry = ldap_next_entry($conn,$first_entry);
$attrs = ldap_get_attributes($conn,$entry);
for ($i=0; $i < $entry["count"]; $i++) {
$attr_name = $entry[$i];
for ($j=0; $j < $entry[$attr_name]["count"]; $j++) {
echo "$attr_name: ".$entry["$attr_name"][$j]."\n";
}
}
This enables you to get listings like:
dn: cn=admin,ou=Groups
cn: admin
objectClass: posixGroup
gidNumber: 500
memberUid: 604
memberUid: 605
(note the two values for "memberUid")
I hope this helps someone.
-Jeff
28-Nov-2002 08:19
An example :
for($i=ldap_first_entr($connect,$result);
$arr=ldap_get_attributes($connect,$i);
$i=ldap_next_entry($connect,$i))
{
foreach ($arr as $k => $v)
{
$myrow[$k]=$arr[$k][0];
}
}
29-May-2002 11:18
A short example :
$qry = ldap_search( $cxion, $ldap_base, '(cn=seb*)' );
$entry = ldap_first_entry( $cxion, $qry );
while( $entry ){
$dn = ldap_get_dn( $cxion, $entry );
echo "<b>$dn</b><br>\n";
$attrs = ldap_get_attributes( $cxion, $entry );
for( $i=0; $i<$attrs['count']; $i++ ){
echo "$attrs[$i]: ";
for( $j=0; $j<$attrs[$attrs[$i]]['count']; $j++ )
echo $attrs[$attrs[$i]][$j] . " ";
echo "<br>\n";
}
echo "\<br>\n";
$entry = ldap_next_entry( $cxion, $entry );
}
ldap_free_result( $qry );
