PHP ftp_close() 函數(shù)
PHP ftp_close() 函數(shù)

定義和用法
ftp_close() 函數(shù)關(guān)閉 FTP 連接。
語法
ftp_close(ftp_connection)
參數(shù) | 描述 |
---|---|
ftp_connection | 必需。規(guī)定要關(guān)閉的 FTP 連接。 |
實(shí)例
<?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);
?>

相關(guān)文章
- PHP EOF(heredoc) 使用說明
- PHP 超級(jí)全局變量
- PHP For 循環(huán)
- PHP 函數(shù)
- PHP 面向?qū)ο?/a>
- PHP 包含文件 include 和 require 語句
- PHP Secure E-mails
- PHP array_chunk() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP current() 函數(shù)
- PHP end() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sort() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP FTP 函數(shù)
- PHP 5 MySQLi 函數(shù)