コード例 #1
0
ファイル: FtpClient.php プロジェクト: nicolab/php-ftp-client
 /**
  * Closes the current FTP connection.
  *
  * @return bool
  */
 public function close()
 {
     if ($this->conn) {
         $this->ftp->close();
         $this->conn = null;
     }
 }