PHP ftp_close() 函数
PHP ftp_close() 函数
完整的 PHP FTP 参考手册定义和用法
ftp_close() 函数关闭 FTP 连接。
语法
ftp_close(ftp_connection)
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要关闭的 FTP 连接。 |
实例
<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
//some code to be executed
ftp_close($conn);
?>
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
//some code to be executed
ftp_close($conn);
?>
完整的 PHP FTP 参考手册
相关文章
- PHP EOF(heredoc) 使用说明
- PHP 超级全局变量
- PHP For 循环
- PHP 函数
- PHP 面向对象
- PHP 包含文件 include 和 require 语句
- PHP Secure E-mails
- PHP array_chunk() 函数
- PHP array_count_values() 函数
- PHP array_fill_keys() 函数
- PHP array_key_first() 函数
- PHP array_pop() 函数
- PHP array_walk() 函数
- PHP current() 函数
- PHP end() 函数
- PHP shuffle() 函数
- PHP sort() 函数
- PHP 5 Date/Time 函数
- PHP FTP 函数
- PHP 5 MySQLi 函数