Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 47512 программистов и 3142 робота. Сейчас ищут 1098 программистов ...
Net_POP3::login()
Вернуться к: Net_POP3
Net_POP3::login()
Net_POP3::login() – Performs the login procedure
Synopsis
require_once 'Net/POP3.php';
boolean Net_POP3::login ( string $user string $pass boolean $apop )
Performs the login procedure. If there is a timestamp stored, APOP will be tried first, then basic USER/PASS.
Parameter
-
string $user - Username to use
-
string $pass - Password to use
-
boolean $apop - Whether to try APOP first
Return value
Returns TRUE on success, PEAR_Error on failure.
Note
This function can not be called statically.
Вернуться к: Net_POP3