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


PHP ftp_get_option()用法及代碼示例


ftp_get_option()函數是PHP中的內置函數,用於獲取現有FTP連接的運行時選項。

用法:

ftp_get_option( $ftp_connection, $option )

參數:該函數接受上述和以下描述的兩個參數:


  • $ftp_connection:它是必填參數。它指定已經存在的FTP連接。
  • $option:它是必填參數。它指定要為現有FTP連接返回的運行時選項。
    可能的選項是
    • FTP_TIMEOUT_SEC:用於網絡的返回超時。
    • FTP_AUTOSEEK:如果此選項打開,則返回,否則返回FALSE。

返回值:如果成功,則返回該選項的值;如果不支持該選項,則返回False。

注意:

  • 此函數適用於PHP 4.2.0和更高版本。
  • 以下示例無法在在線IDE上運行。因此,請嘗試使用適當的ftp服務器名稱在某些PHP托管服務器或localhost中運行。

例:

<?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"; 
  
   
// 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!"; 
          
        // Printing timeout for current ftp connection 
        echo ftp_get_option($ftp_connection, FTP_TIMEOUT_SEC) . "<br>"; 
          
        // Printing whether FTP_AUTOSEEK enabled or not 
        echo ftp_get_option($ftp_connection, FTP_AUTOSEEK) . "<br>"; 
           
    } 
    else { 
        echo "<br>login failed!"; 
    } 
      
    // Closeing  connection 
    if(ftp_close($ftp_connection)) { 
        echo "<br>Connection closed Successfully!"; 
    }  
} 
?>

輸出:

successfully connected to the ftp server!
logged in successfully!
90
1
Connection closed Successfully!

參考: https://www.php.net/manual/en/function.ftp-get-option.php



相關用法


注:本文由純淨天空篩選整理自gekcho大神的英文原創作品 PHP | ftp_get_option() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。