コード例 #1
0
ファイル: FtpClient.php プロジェクト: nicolab/php-ftp-client
 /**
  * Changes to the parent directory.
  *
  * @throws FtpException
  * @return FtpClient
  */
 public function up()
 {
     $result = @$this->ftp->cdup();
     if ($result === false) {
         throw new FtpException('Unable to get parent folder');
     }
     return $this;
 }