ftp_quit() 函数关闭 FTP 连接。
ftp_quit(ftp_connection)
提示:该函数是 ftp_close() 函数的别名。
<?php $conn = ftp_connect("ftp.testftp.com") or die("Could not connect"); //some code to be executed ftp_quit($conn); ?>