ftp_base::SendMSG()
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() ftp base::SendMSG code WP 6.8
function SendMSG($message = "", $crlf=true) { if ($this->Verbose) { echo $message.($crlf?CRLF:""); flush(); } return TRUE; }