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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。