當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。