ftp_base::systype

Advertisement

Syntax Syntax

ftp_base::systype()

Source Source

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

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

Advertisement

Advertisement

Leave a Reply