Net_FTP::disconnect()
Net_FTP::disconnect() – disconnects from the FTP server
Synopsis
require_once 'Net/FTP.php';
void Net_FTP::disconnect (
)
Описание
Disconnect from the FTP server you're connected to.
Return value
void
Замечание
This function can not be called statically.
Пример
Using disconnect()
<?php
$test->disconnect();
?>