<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.ldap.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'function.ldap-first-entry.php',
    1 => 'ldap_first_entry',
    2 => 'Return first result id',
  ),
  'up' => 
  array (
    0 => 'ref.ldap.php',
    1 => 'LDAP Funzioni',
  ),
  'prev' => 
  array (
    0 => 'function.ldap-first-attribute.php',
    1 => 'ldap_first_attribute',
  ),
  'next' => 
  array (
    0 => 'function.ldap-first-reference.php',
    1 => 'ldap_first_reference',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/ldap/functions/ldap-first-entry.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.ldap-first-entry" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ldap_first_entry</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">ldap_first_entry</span> &mdash; <span class="dc-title">Return first result id</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.ldap-first-entry-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>ldap_first_entry</strong></span>(<span class="methodparam"><span class="type"><a href="class.ldap-connection.php" class="type LDAP\Connection">LDAP\Connection</a></span> <code class="parameter">$ldap</code></span>, <span class="methodparam"><span class="type"><a href="class.ldap-result.php" class="type LDAP\Result">LDAP\Result</a></span> <code class="parameter">$result</code></span>): <span class="type"><span class="type">LDAP\ResultEntry</span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   Returns the entry identifier for first entry in the result. This entry
   identifier is then supplied to <span class="function"><a href="function.ldap-next-entry.php" class="function">ldap_next_entry()</a></span>
   routine to get successive entries from the result.
  </p>
  <p class="para">
   Entries in the LDAP result are read sequentially using the
   <span class="function"><strong>ldap_first_entry()</strong></span> and
   <span class="function"><a href="function.ldap-next-entry.php" class="function">ldap_next_entry()</a></span> functions.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.ldap-first-entry-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">ldap</code></dt>
     <dd>
      <p class="para">
       An <span class="classname"><a href="class.ldap-connection.php" class="classname">LDAP\Connection</a></span> instance, returned by <span class="function"><a href="function.ldap-connect.php" class="function">ldap_connect()</a></span>.
      </p>
     </dd>
    
    
     <dt><code class="parameter">result</code></dt>
     <dd>
      <p class="para">
       An <span class="classname"><a href="class.ldap-result.php" class="classname">LDAP\Result</a></span> instance, returned by <span class="function"><a href="function.ldap-list.php" class="function">ldap_list()</a></span> or <span class="function"><a href="function.ldap-search.php" class="function">ldap_search()</a></span>.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.ldap-first-entry-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="para">
   Returns an <span class="classname"><a href="class.ldap-result-entry.php" class="classname">LDAP\ResultEntry</a></span> instance, o <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> in caso di fallimento.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.ldap-first-entry-changelog">
  <h3 class="title">Log delle modifiche</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Versione</th>
      <th>Descrizione</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
 <td>8.1.0</td>
 <td>
  The <code class="parameter">ldap</code> parameter expects an <span class="classname"><a href="class.ldap-connection.php" class="classname">LDAP\Connection</a></span>
  instance now; previously, a valid <code class="literal">ldap link</code> <a href="language.types.resource.php" class="link">resource</a> was expected.
 </td>
</tr>

     <tr>
 <td>8.1.0</td>
 <td>
  The <code class="parameter">result</code> parameter expects an <span class="classname"><a href="class.ldap-result.php" class="classname">LDAP\Result</a></span>
  instance now; previously, a valid <code class="literal">ldap result</code> <a href="language.types.resource.php" class="link">resource</a> was expected.
 </td>
</tr>

     <tr>
 <td>8.1.0</td>
 <td>
  Returns an <span class="classname"><a href="class.ldap-result-entry.php" class="classname">LDAP\ResultEntry</a></span> instance now;
  previously, a <a href="language.types.resource.php" class="link">resource</a> was returned.
 </td>
</tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 seealso" id="refsect1-function.ldap-first-entry-seealso">
  <h3 class="title">Vedere anche:</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.ldap-get-entries.php" class="function" rel="rdfs-seeAlso">ldap_get_entries()</a> - Get all result entries</span></li>
   </ul>
  </p>
 </div>


</div><?php manual_footer($setup); ?>