POP3::getResponse PHP Method

getResponse() private method

$size is the maximum number of bytes to retrieve
private getResponse ( integer $size = 128 ) : string
$size integer
return string
    private function getResponse($size = 128)
    {
        $pop3_response = fgets($this->pop_conn, $size);
        return $pop3_response;
    }