Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > ebb1914cf182a88528b4547490db1dd8 > files > 1002

kdewebdev-quanta-doc-3.5.9-2mdv2008.1.x86_64.rpm

<HTML
><HEAD
><TITLE
>ldap_get_attributes</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.44"><LINK
REL="HOME"
TITLE="PHP Manual"
HREF="manual.html"><LINK
REL="UP"
TITLE="LDAP functions"
HREF="ref.ldap.html"><LINK
REL="PREVIOUS"
TITLE="ldap_free_result"
HREF="function.ldap-free-result.html"><LINK
REL="NEXT"
TITLE="ldap_get_dn"
HREF="function.ldap-get-dn.html"></HEAD
><BODY
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>PHP Manual</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.ldap-free-result.html"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.ldap-get-dn.html"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.ldap-get-attributes"
>ldap_get_attributes</A
></H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN15102"
></A
>ldap_get_attributes -- Get attributes from a search result entry</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN15105"
></A
><H2
>Description</H2
><DIV
CLASS="funcsynopsis"
><P
></P
><CODE
CLASS="FUNCDEF"
>array ldap_get_attributes</CODE
>(int link_identifier, int
     result_entry_identifier);<P
></P
></DIV
><P
>&#13;     Returns a complete entry information in a multi-dimensional array
     on success and false on error.</P
><P
>&#13;     <B
CLASS="function"
>ldap_get_attributes()</B
> function is used to
     simplify reading the attributes and values from an entry in the
     search result. The return value is a multi-dimensional array of
     attributes and values.</P
><P
>&#13;     Having located a specific entry in the directory, you can find
     out what information is held for that entry by using this
     call. You would use this call for an application which "browses"
     directory entries and/or where you do not know the structure of
     the directory entries. In many applications you will be searching
     for a specific attribute such as an email address or a surname,
     and won't care what other data is held.</P
><P
>&#13;     <DIV
CLASS="informalexample"
><P
></P
><P
CLASS="literallayout"
><br>
return_value["count"]&nbsp;=&nbsp;number&nbsp;of&nbsp;attributes&nbsp;in&nbsp;the&nbsp;entry<br>
return_value[0]&nbsp;=&nbsp;first&nbsp;attribute<br>
return_value[n]&nbsp;=&nbsp;nth&nbsp;attribute<br>
<br>
return_value["attribute"]["count"]&nbsp;=&nbsp;number&nbsp;of&nbsp;values&nbsp;for&nbsp;attribute<br>
return_value["attribute"][0]&nbsp;=&nbsp;first&nbsp;value&nbsp;of&nbsp;the&nbsp;attribute<br>
return_value["attribute"][i]&nbsp;=&nbsp;ith&nbsp;value&nbsp;of&nbsp;the&nbsp;attribute<br>
</P
><P
></P
></DIV
>

    <TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><P
><B
>Example 1. Show the list of attributes held for a particular directory
     entry </B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
>  1&nbsp;
  2&nbsp;// $ds is the link identifier for the directory
  3&nbsp;
  4&nbsp;// $sr is a valid search result from a prior call to
  5&nbsp;// one of the ldap directory search calls
  6&nbsp;
  7&nbsp;$entry = ldap_first_entry($ds, $sr);
  8&nbsp;
  9&nbsp;$attrs = ldap_get_attributes($ds, $entry);
 10&nbsp;
 11&nbsp;echo $attrs["count"]." attributes held for this entry:&#60;p&#62;";
 12&nbsp;
 13&nbsp;for ($i=0; $i&#60;$attrs["count"]; $i++)
 14&nbsp;    echo $attrs[$i]."&#60;br&#62;";
 15&nbsp;</PRE
></TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
></P
><P
>&#13;      see also <A
HREF="function.ldap-first-attribute.html"
><B
CLASS="function"
>ldap_first_attribute()</B
></A
> and
      <A
HREF="function.ldap-next-attribute.html"
><B
CLASS="function"
>ldap_next_attribute()</B
></A
></P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="function.ldap-free-result.html"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="manual.html"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.ldap-get-dn.html"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>ldap_free_result</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.ldap.html"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>ldap_get_dn</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>