PHP ftp_quit() 函数
PHP ftp_quit() 函数
完整的 PHP FTP 参考手册定义和用法
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);
?>
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
//some code to be executed
ftp_quit($conn);
?>
完整的 PHP FTP 参考手册
相关文章
- PHP 运算符
- PHP Switch 语句
- PHP 命名空间 namespace
- PHP array_chunk() 函数
- PHP array_combine() 函数
- PHP array_count_values() 函数
- PHP array_flip() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_pop() 函数
- PHP array_push() 函数
- PHP array_splice() 函数
- PHP array_uintersect_uassoc() 函数
- PHP compact() 函数
- PHP end() 函数
- PHP next() 函数
- PHP pos() 函数
- PHP prev() 函数
- PHP 5 Calendar 函数
- PHP Filter 函数
- PHP 5 Math 函数