POP3::sendString PHP Méthode

sendString() private méthode

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