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


PHP ftp_close()用法及代碼示例


ftp_close()函數是PHP中的內置函數,用於關閉與指定FTP服務器或主機的現有FTP連接。

用法:

ftp_close( $ftp_connection );

參數:該函數接受單個參數$ftp_connection。它指定FTP連接以關閉FTP連接。

返回值:成功返回True,失敗返回False。


注意:

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

以下示例程序旨在說明PHP中的ftp_close()函數:

範例1:

<?php 
  
// Connect to FTP server 
$ftp_server = "localhost"; 
  
// 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!"; 
      
    // Closing  connection 
    if(ftp_close($ftp_connection)) { 
        echo "<br>Connection closed Successfully!"; 
    } 
} 
?>

輸出:

Successfully connected to the ftp server!
Connection closed Successfully!

範例2:使用端口21連接到ftp服務器。

<?php 
  
// Connect to FTP server 
$ftp_server = "localhost"; 
  
// 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!"; 
      
    // Closing  connection 
    if(ftp_close($ftp_connection)) { 
        echo "<br>Connection closed Successfully!"; 
    } 
} 
?>

輸出:

Successfully connected to the ftp server!
Connection closed Successfully!

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



相關用法


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