ftp_close()函数是PHP中的内置函数, 用于关闭与指定FTP服务器或主机的现有FTP连接。
语法如下:
ftp_close( $ftp_connection );
参数:该函数接受单个参数$ ftp_connection这是必需的。它指定FTP连接以关闭FTP连接。
返回值:成功返回True, 失败返回False。
【PHP如何使用ftp_close()函数(代码实例)】注意:
- 此功能可用于PHP 4.0.0和更高版本。
- 以下示例无法在在线IDE上运行。因此, 请尝试使用适当的ftp服务器名称在某些PHP托管服务器或localhost中运行。
范例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!" ;
// Closingconnection
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!" ;
// Closingconnection
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
推荐阅读
- 基于栈的CPU组织介绍和指南
- Android - 文件
- Android服务Service使用总结
- Android开发中需要注意哪些坑
- Windows下部署Appium教程(Android App自动化测试框架搭建)
- android 项目学习随笔十六( 广告轮播条播放)
- Android随笔之——PackageManager详解
- Android四大基本组件介绍与生命周期
- Android性能优化之利用Rxlifecycle解决RxJava内存泄漏