ftp_base::cdup()publicWP 1.0

Method of the class: ftp_base{}

No Hooks.

Return

null. Nothing (null).

Usage

$ftp_base = new ftp_base();
$ftp_base->cdup();

ftp_base::cdup() code WP 6.5.2

function cdup() {
	if(!$this->_exec("CDUP", "cdup")) return FALSE;
	if(!$this->_checkCode()) return FALSE;
	return true;
}