使用PHP的Socket写的POP3类(4) return false; } $this->getLineResponse(); if (!$this->getRestIsSUCceed()) { return false; } } return true; }
//关闭连接 function closeHost() { if ($this->resHandler) { fclose($this->resHandler); } return true; }
//发送指令 function sendCommand($strCommand) { if ($this->bolDebug) { if (!preg_match("/PASS/", $strCommand)) { echo "Send Command: ".$strCommand."\r\n"; } else