浏览 95
更新于 2020-09-12 13:42
定义和用法
ftp_close() 函数关闭 FTP 连接。
语法
ftp_close(ftp_connection)
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要关闭的 FTP 连接。 |
实例
<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
//some code to be executed
ftp_close($conn);
?>