POP3::sendString PHP 메소드

sendString() 개인적인 메소드

Send a string down the open socket connection to the POP3 server
private sendString ( string $string ) : integer
$string string
리턴 integer
    private function sendString($string)
    {
        $bytes_sent = fwrite($this->pop_conn, $string, strlen($string));
        return $bytes_sent;
    }