ftp_base::restore

Advertisement

Syntax Syntax

ftp_base::restore( $from )

Source Source

File: wp-admin/includes/class-ftp.php

	function restore($from) {
		if(!isset($this->_features["REST"])) {
			$this->PushError("restore", "not supported by server");
			return FALSE;
		}
		if($this->_curtype!=FTP_BINARY) {
			$this->PushError("restore", "can't restore in ASCII mode");
			return FALSE;
		}
		if(!$this->_exec("REST ".$from, "resore")) return FALSE;
		if(!$this->_checkCode()) return FALSE;
		return TRUE;
	}

Advertisement

Advertisement

Leave a Reply