在线文档教程

ftp_close

ftp_close

(PHP 4 >= 4.2.0, PHP 5, PHP 7)

ftp_close - 关闭FTP连接

描述

bool ftp_close ( resource $ftp_stream )

ftp_close()关闭给定的链接标识符并释放资源。

注意:调用此函数后,您不能再使用FTP连接,并且必须使用ftp_connect()创建一个新连接。

参数

ftp_stream

FTP连接的链接标识符。

返回值

成功时返回TRUE或失败时返回FALSE

例子

示例#1 ftp_close()示例

<?php // set up basic connection $conn_id = ftp_connect($ftp_server // login with username and password $login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass // print the current directory echo ftp_pwd($conn_id // / // close this connection ftp_close($conn_id ?>