您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1514 复制当前网址

ftp_quit



PHP ftp_quit() 函数

定义和用法

ftp_quit() 函数关闭 FTP 连接。

该函数关闭给出的连接标识符并释放资源。


语法

ftp_quit(ftp_connection)


参数描述
ftp_connection必需。规定要使用的 FTP 连接(FTP 连接的标识符)。


提示和注释

提示:该函数是 ftp_close() 函数的别名。


例子

<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");//要执行的一些代码ftp_quit($conn);
?>


文章来源:https://liqingbo.com/blog-677.html

上一篇:ftp_raw

下一篇:ftp_pwd

评论