PHP | ftp_close()函数
ftp_close()函数是PHP中的一个内置函数,用于关闭已存在的与指定 FTP 服务器或主机的 FTP 连接。
句法:
ftp_close( $ftp_connection );
参数:此函数接受所需的单个参数$ftp_connection 。它指定 FTP 连接以关闭 FTP 连接。
返回值:成功时返回True,失败时返回False。
笔记:
- 此函数适用于PHP 4.0.0 及更新版本。
- 以下示例无法在在线 IDE 上运行。因此,请尝试在一些PHP托管服务器或具有正确 ftp 服务器名称的 localhost 中运行。
下面的程序说明了PHP中的 ftp_close()函数:
示例 1:
Connection closed Successfully!";
}
}
?>
输出:
Successfully connected to the ftp server!
Connection closed Successfully!
示例 2:使用端口 21 连接到 ftp 服务器。
Connection closed Successfully!";
}
}
?>
输出:
Successfully connected to the ftp server!
Connection closed Successfully!
参考: https://www. PHP.net/manual/en/ 函数.ftp-close。 PHP