发布于 2016-11-18 14:33:31 | 54 次阅读 | 评论: 0 | 来源: 网络整理
ftp_quit() 函数关闭 FTP 连接。
ftp_quit(ftp_connection)
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要关闭的 FTP 连接。 |
提示:该函数是 ftp_close() 函数的别名。
<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
//some code to be executed
ftp_quit($conn);
?>