ftp_pure::_readmsg()
Метод класса: ftp_pure{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$ftp_pure = new ftp_pure(); $ftp_pure->_readmsg( $fnction );
- $fnction **
- -
По умолчанию: "_readmsg"
Код ftp_pure::_readmsg() ftp pure:: readmsg WP 6.8
function _readmsg($fnction="_readmsg"){ if(!$this->_connected) { $this->PushError($fnction, 'Connect first'); return FALSE; } $result=true; $this->_message=""; $this->_code=0; $go=true; do { $tmp=@fgets($this->_ftp_control_sock, 512); if($tmp===false) { $go=$result=false; $this->PushError($fnction,'Read failed'); } else { $this->_message.=$tmp; if(preg_match("/^([0-9]{3})(-(.*[".CRLF."]{1,2})+\\1)? [^".CRLF."]+[".CRLF."]{1,2}$/", $this->_message, $regs)) $go=false; } } while($go); if($this->LocalEcho) echo "GET < ".rtrim($this->_message, CRLF).CRLF; $this->_code=(int)$regs[1]; return $result; }