Net_FTP::disconnect()

Net_FTP::disconnect() – FTP サーバとの接続を切断する

Synopsis

require_once 'Net/FTP.php';

void Net_FTP::disconnect ( )

Description

FTP サーバとの接続を切断します。

Return value

void

Note

This function can not be called statically.

Example

disconnect() の使用

<?php
     
    $test
->disconnect();

?>