(PHP 4 >= 4.2.0, PHP 5, PHP 7)
ftp_close — �ر�һ�� FTP ����
$ftp_stream
) : boolftp_close() �رո��������ӱ�ʶ�����ͷ���Դ��
Note:
���ñ�������������ʹ�� FTP ���ӣ������� ftp_connect() ����һ�������ӡ�
ftp_stream
FTP ���ӵı�ʶ����
�ɹ�ʱ���� TRUE
�� ������ʧ��ʱ���� FALSE
��
Example #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);
?>