Net_POP3::login()

Net_POP3::login() – ログイン手続きを行う

Synopsis

require_once 'Net/POP3.php';

boolean Net_POP3::login ( string $user string $pass boolean $apop )

Description

ログイン手続きを実行します。タイムスタンプが保存されている場合はまず APOP を試み、それから基本的な USER/PASS によるログインを試みます。

Parameter

  • string $user - 使用するユーザ名。

  • string $pass - 使用するパスワード。

  • boolean $apop - APOP を試みるかどうか。

Return value

Returns TRUE on success, PEAR_Error on failure.

Note

This function can not be called statically.