ftp_base::restore()
Метод класса: ftp_base{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$ftp_base = new ftp_base(); $ftp_base->restore( $from );
- $from (обязательный)
- -
Код ftp_base::restore() ftp base::restore WP 6.2.2
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", "cannot restore in ASCII mode"); return FALSE; } if(!$this->_exec("REST ".$from, "resore")) return FALSE; if(!$this->_checkCode()) return FALSE; return TRUE; }