ftp_base::systype()publicWP 1.0

Method of the class: ftp_base{}

No Hooks.

Return

null. Nothing (null).

Usage

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

ftp_base::systype() code WP 6.5.2

function systype() {
	if(!$this->_exec("SYST", "systype")) return FALSE;
	if(!$this->_checkCode()) return FALSE;
	$DATA = explode(" ", $this->_message);
	return array($DATA[1], $DATA[3]);
}