ftp_base::SendMSG()publicWP 1.0

Method of the class: ftp_base{}

No Hooks.

Return

null. Nothing (null).

Usage

$ftp_base = new ftp_base();
$ftp_base->SendMSG( $message, $crlf );
$message **
-
Default: ""
$crlf **
-
Default: true

ftp_base::SendMSG() code WP 6.5.2

function SendMSG($message = "", $crlf=true) {
	if ($this->Verbose) {
		echo $message.($crlf?CRLF:"");
		flush();
	}
	return TRUE;
}