PHP ftp_quit() 函数
PHP ftp_quit() 函数用于关闭 FTP 连接
该函数是 ftp_close() 函数的别名
函数原型
ftp_quit(ftp_connection)
参数列表
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要关闭的 FTP 连接 |
范例
<?php $conn = ftp_connect("ftp.testftp.com") or die("Could not connect"); //some code to be executed ftp_quit($conn);