ftp_base::SendMSG
Method of the class: ftp_base{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ftp_base = new ftp_base(); $ftp_base->SendMSG( $message, $crlf );
- $message
- .
Default:"" - $crlf
- .
Default:true
ftp_base::SendMSG() ftp base::SendMSG code WP 6.9.1
function SendMSG($message = "", $crlf=true) {
if ($this->Verbose) {
echo $message.($crlf?CRLF:"");
flush();
}
return TRUE;
}