ftp_base::abort

Advertisement

Syntax Syntax

ftp_base::abort()

Source Source

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

	function abort() {
		if(!$this->_exec("ABOR", "abort")) return FALSE;
		if(!$this->_checkCode()) {
			if($this->_code!=426) return FALSE;
			if(!$this->_readmsg("abort")) return FALSE;
			if(!$this->_checkCode()) return FALSE;
		}
		return true;
	}

Advertisement

Advertisement

Leave a Reply