<?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 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.ldap-get-values-len.php',
    1 => 'ldap_get_values_len',
    2 => 'Liefert alle bin&auml;ren Werte eines Eintrags aus einem Ergebnis',
  ),
  'up' => 
  array (
    0 => 'ref.ldap.php',
    1 => 'LDAP Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.ldap-get-values.php',
    1 => 'ldap_get_values',
  ),
  'next' => 
  array (
    0 => 'function.ldap-list.php',
    1 => 'ldap_list',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/ldap/functions/ldap-get-values-len.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.ldap-get-values-len" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ldap_get_values_len</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">ldap_get_values_len</span> &mdash; <span class="dc-title">Liefert alle binären Werte eines Eintrags aus einem Ergebnis</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.ldap-get-values-len-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>ldap_get_values_len</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">LDAP\ResultEntry</span> <code class="parameter">$entry</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$attribute</code></span>): <span class="type"><span class="type"><a href="language.types.array.php" class="type array">array</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   Liest alle Werte eines Merkmals im Ergebniseintrag.
  </p>
  <p class="para">
   Diese Funktion wird exakt gleich verwendet wie die Funktion
   <span class="function"><a href="function.ldap-get-values.php" class="function">ldap_get_values()</a></span>, mit der Ausnahme, dass hier binäre
   Daten statt Textdaten behandelt werden.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.ldap-get-values-len-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">ldap</code></dt>
     <dd>
      <p class="para">
       Eine <span class="classname"><a href="class.ldap-connection.php" class="classname">LDAP\Connection</a></span>Instanz, die von  <span class="function"><a href="function.ldap-connect.php" class="function">ldap_connect()</a></span> zurückgegeben wurde.
      </p>
     </dd>
    
    
     <dt><code class="parameter">entry</code></dt>
     <dd>
      <p class="para">
       Eine <span class="classname"><a href="class.ldap-result-entry.php" class="classname">LDAP\ResultEntry</a></span>-Instanz
      </p>
     </dd>
    
    
     <dt><code class="parameter">attribute</code></dt>
     <dd>
      <p class="para">
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.ldap-get-values-len-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Gibt im Erfolgsfall ein Array mit den Werten des Merkmals zurück und
   <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> im Fehlerfall. Auf einzelne Werte kann über die numerischen Indizes
   des Arrays zugegriffen werden. Der erste Indexwert ist 0. Die Anzahl der
   zurückgegebenen Werte steht im Index &quot;count&quot; des zurückgegebenen Arrays zur
   Verfügung.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.ldap-get-values-len-changelog">
  <h3 class="title">Changelog</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Version</th>
      <th>Beschreibung</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
 <td>8.1.0</td>
 <td>
  Der Parameter <code class="parameter">ldap</code> erwartet nun eine <span class="classname"><a href="class.ldap-connection.php" class="classname">LDAP\Connection</a></span>-Instanz;
  vorher wurde eine gültige <code class="literal">ldap link</code>-<a href="language.types.resource.php" class="link">Ressource</a> erwartet.
 </td>
</tr>

     <tr>
 <td>8.1.0</td>
 <td>
  Der Parameter <code class="parameter">entry</code> erwartet nun eine
  <span class="classname"><a href="class.ldap-result-entry.php" class="classname">LDAP\ResultEntry</a></span>-Instanz; vorher wurde eine gültige
  <code class="literal">ldap result entry</code>-<a href="language.types.resource.php" class="link">Ressource</a> erwartet.
 </td>
</tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 seealso" id="refsect1-function.ldap-get-values-len-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.ldap-get-values.php" class="function" rel="rdfs-seeAlso">ldap_get_values()</a> - Liefert alle Werte eines Eintrags aus einem Ergebnis</span></li>
   </ul>
  </p>
 </div>


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