二十五岁时我们都一样愚蠢、多愁善感,喜欢故弄玄虚,可如果不那样的话,五十岁时也就不会如此明智。
标题:PHP ftp_quit() 函数
PHP ftp_quit() 函数
定义和用法
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); ?>