<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.ftp.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'fr',
  ),
  'this' => 
  array (
    0 => 'function.ftp-mlsd.php',
    1 => 'ftp_mlsd',
    2 => 'Retourne la liste des fichiers d\'un dossier donn&eacute;',
  ),
  'up' => 
  array (
    0 => 'ref.ftp.php',
    1 => 'Fonctions FTP',
  ),
  'prev' => 
  array (
    0 => 'function.ftp-mkdir.php',
    1 => 'ftp_mkdir',
  ),
  'next' => 
  array (
    0 => 'function.ftp-nb-continue.php',
    1 => 'ftp_nb_continue',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'fr',
    'path' => 'reference/ftp/functions/ftp-mlsd.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.ftp-mlsd" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ftp_mlsd</h1>
  <p class="verinfo">(PHP 7 &gt;= 7.2.0, PHP 8)</p><p class="refpurpose"><span class="refname">ftp_mlsd</span> &mdash; <span class="dc-title">Retourne la liste des fichiers d&#039;un dossier donné</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.ftp-mlsd-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>ftp_mlsd</strong></span>(<span class="methodparam"><span class="type"><a href="class.ftp-connection.php" class="type FTP\Connection">FTP\Connection</a></span> <code class="parameter">$ftp</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$directory</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>

 </div>

 <div class="refsect1 parameters" id="refsect1-function.ftp-mlsd-parameters">
  <h3 class="title">Liste de paramètres</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">ftp</code></dt>
     <dd>
      <p class="para">Une instance de <span class="classname"><a href="class.ftp-connection.php" class="classname">FTP\Connection</a></span>.</p>
     </dd>
    
    
     <dt><code class="parameter">directory</code></dt>
     <dd>
      <p class="para">
       Le dossier à parcourir.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.ftp-mlsd-returnvalues">
  <h3 class="title">Valeurs de retour</h3>
  <p class="para">
   Retourne un tableau de tableaux avec les informations des fichiers du dossier spécifié
   en cas de réussite ou <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> s&#039;il y a une erreur.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.ftp-mlsd-changelog">
  <h3 class="title">Historique</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Version</th>
      <th>Description</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
 <td>8.1.0</td>
 <td>
  La paramètre <code class="parameter">ftp</code> attend désormais une instance de
  <span class="classname"><a href="class.ftp-connection.php" class="classname">FTP\Connection</a></span> ; auparavant, une <span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> était attendu.
 </td>
</tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 examples" id="refsect1-function.ftp-mlsd-examples">
  <h3 class="title">Exemples</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Exemple #1 Exemple avec <span class="function"><strong>ftp_mlsd()</strong></span></strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #FF8000">// mise en place d'une connexion basique<br /></span><span style="color: #0000BB">$ftp </span><span style="color: #007700">= </span><span style="color: #0000BB">ftp_connect</span><span style="color: #007700">(</span><span style="color: #0000BB">$ftp_server</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">// connexion avec un nom d'utilisateur et un mot de passe<br /></span><span style="color: #0000BB">$login_result </span><span style="color: #007700">= </span><span style="color: #0000BB">ftp_login</span><span style="color: #007700">(</span><span style="color: #0000BB">$ftp</span><span style="color: #007700">, </span><span style="color: #0000BB">$ftp_user_name</span><span style="color: #007700">, </span><span style="color: #0000BB">$ftp_user_pass</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">// récupère le contenu du dossier courant<br /></span><span style="color: #0000BB">$contents </span><span style="color: #007700">= </span><span style="color: #0000BB">ftp_mlsd</span><span style="color: #007700">(</span><span style="color: #0000BB">$ftp</span><span style="color: #007700">, </span><span style="color: #DD0000">"."</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">// affiche $contents<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$contents</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>  
    </div>

    <div class="example-contents"><p>Résultat de l&#039;exemple ci-dessus est similaire à :</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">array(5) {
  [0]=&gt;
  array(8) {
    [&quot;name&quot;]=&gt;
    string(1) &quot;.&quot;
    [&quot;modify&quot;]=&gt;
    string(14) &quot;20171212154511&quot;
    [&quot;perm&quot;]=&gt;
    string(7) &quot;flcdmpe&quot;
    [&quot;type&quot;]=&gt;
    string(4) &quot;cdir&quot;
    [&quot;unique&quot;]=&gt;
    string(11) &quot;811U5740002&quot;
    [&quot;UNIX.group&quot;]=&gt;
    string(2) &quot;33&quot;
    [&quot;UNIX.mode&quot;]=&gt;
    string(4) &quot;0755&quot;
    [&quot;UNIX.owner&quot;]=&gt;
    string(2) &quot;33&quot;
  }
  [1]=&gt;
  array(8) {
    [&quot;name&quot;]=&gt;
    string(2) &quot;..&quot;
    [&quot;modify&quot;]=&gt;
    string(14) &quot;20171212154511&quot;
    [&quot;perm&quot;]=&gt;
    string(7) &quot;flcdmpe&quot;
    [&quot;type&quot;]=&gt;
    string(4) &quot;pdir&quot;
    [&quot;unique&quot;]=&gt;
    string(11) &quot;811U5740002&quot;
    [&quot;UNIX.group&quot;]=&gt;
    string(2) &quot;33&quot;
    [&quot;UNIX.mode&quot;]=&gt;
    string(4) &quot;0755&quot;
    [&quot;UNIX.owner&quot;]=&gt;
    string(2) &quot;33&quot;
  }
  [2]=&gt;
  array(8) {
    [&quot;name&quot;]=&gt;
    string(11) &quot;public_html&quot;
    [&quot;modify&quot;]=&gt;
    string(14) &quot;20171211171525&quot;
    [&quot;perm&quot;]=&gt;
    string(7) &quot;flcdmpe&quot;
    [&quot;type&quot;]=&gt;
    string(3) &quot;dir&quot;
    [&quot;unique&quot;]=&gt;
    string(11) &quot;811U5740525&quot;
    [&quot;UNIX.group&quot;]=&gt;
    string(2) &quot;33&quot;
    [&quot;UNIX.mode&quot;]=&gt;
    string(4) &quot;0755&quot;
    [&quot;UNIX.owner&quot;]=&gt;
    string(2) &quot;33&quot;
  }
  [3]=&gt;
  array(8) {
    [&quot;name&quot;]=&gt;
    string(10) &quot;public_ftp&quot;
    [&quot;modify&quot;]=&gt;
    string(14) &quot;20171211174536&quot;
    [&quot;perm&quot;]=&gt;
    string(7) &quot;flcdmpe&quot;
    [&quot;type&quot;]=&gt;
    string(3) &quot;dir&quot;
    [&quot;unique&quot;]=&gt;
    string(11) &quot;811U57405EE&quot;
    [&quot;UNIX.group&quot;]=&gt;
    string(2) &quot;33&quot;
    [&quot;UNIX.mode&quot;]=&gt;
    string(4) &quot;0755&quot;
    [&quot;UNIX.owner&quot;]=&gt;
    string(2) &quot;33&quot;
  }
  [4]=&gt;
  array(8) {
    [&quot;name&quot;]=&gt;
    string(3) &quot;www&quot;
    [&quot;modify&quot;]=&gt;
    string(14) &quot;www&quot;
    [&quot;perm&quot;]=&gt;
    string(7) &quot;flcdmpe&quot;
    [&quot;type&quot;]=&gt;
    string(3) &quot;dir&quot;
    [&quot;unique&quot;]=&gt;
    string(11) &quot;811U5740780&quot;
    [&quot;UNIX.group&quot;]=&gt;
    string(2) &quot;33&quot;
    [&quot;UNIX.mode&quot;]=&gt;
    string(4) &quot;0755&quot;
    [&quot;UNIX.owner&quot;]=&gt;
    string(2) &quot;33&quot;
  }
}</pre>
</div>
    </div>
   </div>
  </p>
 </div>

 <div class="refsect1 seealso" id="refsect1-function.ftp-mlsd-seealso">
  <h3 class="title">Voir aussi</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.ftp-rawlist.php" class="function" rel="rdfs-seeAlso">ftp_rawlist()</a> - Fait une liste d&eacute;taill&eacute;e des fichiers d'un dossier</span></li>
    <li><span class="function"><a href="function.ftp-nlist.php" class="function" rel="rdfs-seeAlso">ftp_nlist()</a> - Retourne la liste des fichiers d'un dossier</span></li>
   </ul>
  </p>
 </div>

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