当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ftp_nlist()用法及代码示例


ftp_nlist()函数是PHP中的内置函数,用于获取FTP服务器上特定目录中所有文件名和子目录的列表。

用法:

ftp_nlist( $ftp_connection, $directory );

参数:该函数接受上述和以下描述的两个参数:


  • $ftp_connection:它是必填参数。它指定已经存在的FTP连接以获取FTP服务器中所有文件的列表和目录的子目录。
  • $directory:它是String类型的必需参数。它指定远程服务器中的目录,即要列出其文件和子目录的FTP服务器。

返回值:如果成功,则返回文件名和子目录的数组;如果失败,则返回false。

注意:

  • 此函数可用于PHP 4.0.0和更高版本。
  • 以下示例无法在在线IDE上运行。因此,请尝试使用适当的ftp服务器名称在某些PHP托管服务器或localhost中运行。
  • 不要混淆文件名和子目录!许多网站都将子目录名称当作文件名。

以下示例说明了PHP中的ftp_nlist()函数:
范例1:

<?php 
  
// Connect to FTP server 
  
// Use a correct ftp server 
$ftp_server = "localhost"; 
  
// Use correct ftp username 
$ftp_username="username"; 
  
// Use correct ftp password corresponding 
// to the ftp username 
$ftp_userpass="password"; 
  
// File name or path to upload to ftp server 
$file = "filetoupload.txt"; 
   
// Establishing ftp connection  
$ftp_connection = ftp_connect($ftp_server) 
    or die("Could not connect to $ftp_server"); 
  
if($ftp_connection) { 
    echo "successfully connected to the ftp server!"; 
      
    // Logging in to established connection 
    // with ftp username password 
    $login = ftp_login($ftp_connection, $ftp_username, $ftp_userpass); 
      
    if($login){ 
          
        // Checking whether logged in successfully or not 
        echo "<br>logged in successfully!"; 
           
        // Get file & directory list of current directory 
        $file_list = ftp_nlist($ftp_connection, "."); 
          
        //output the array stored in $file_list using foreach loop 
        foreach($file_list as $key=>$dat) { 
            echo $key."=>".$dat."<br>"; 
       } 
    }  
    else { 
        echo "<br>login failed!"; 
    } 
      
    // echo ftp_get_option($ftp_connection, 1); 
    // Closeing  connection 
    if(ftp_close($ftp_connection)) { 
        echo "<br>Connection closed Successfully!"; 
    }  
} 
  
?>

输出:

文件管理器中该目录的内容:

范例2:使用端口号21连接到ftp服务器,然后列出目录内容。

<?php 
  
// Connect to FTP server 
  
// Use a correct ftp server 
$ftp_server = "localhost"; 
  
// Use correct ftp username 
$ftp_username="username"; 
  
// Use correct ftp password corresponding 
// to the ftp username 
$ftp_userpass="password"; 
  
// File name or path to upload to ftp server 
$file = "filetoupload.txt"; 
   
// Establishing ftp connection  
$ftp_connection = ftp_connect($ftp_server, 21) 
    or die("Could not connect to $ftp_server"); 
  
if($ftp_connection) { 
    echo "successfully connected to the ftp server!"; 
      
    // Logging in to established connection 
    // with ftp username password 
    $login = ftp_login($ftp_connection, $ftp_username, $ftp_userpass); 
      
    if($login){ 
          
        // Checking whether logged in successfully or not 
        echo "<br>logged in successfully!"; 
           
        // Get file & directory list of current directory 
        $file_list = ftp_nlist($ftp_connection, "."); 
          
        //output the array stored in $file_list using foreach loop 
        foreach($file_list as $key=>$dat) { 
            echo $key."=>".$dat."<br>"; 
       } 
    }  
    else { 
        echo "<br>login failed!"; 
    } 
      
    // echo ftp_get_option($ftp_connection, 1); 
    // Closeing  connection 
    if(ftp_close($ftp_connection)) { 
        echo "<br>Connection closed Successfully!"; 
    }  
} 
  
?>

输出:

文件管理器中该目录的内容:

参考: https://www.php.net/manual/en/function.ftp-nlist.php



相关用法


注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 PHP | ftp_nlist() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。