Net_NNTP::prepareConnection()
Описание
Connect to a specific newsserver and access the given newsgroup
Внимание |
Эта функция объявлена как deprecated. Это означает, что в будущих версиях пакета она может больше не поддерживаться. |
Consider this method deprecated - use Net_NNTP::connectAuthenticated() instead.
Параметр
$nntpserver - Name of the newsserver to connect
$port - Port, where the newsserver listens
$newsgroup - Newsgroup to access
$user - Username to authenticate
$user - Username to authenticate
$pass - Password to authenticate
$authmode - Type of authentication, at the moment only PEAR_NNTP_AUTHORIGINAL
Throws
Таблица 50-1. Возможные значения PEAR_Error
Error code | Error message | Reason | Solution |
---|---|---|---|
NULL | "Could not connect to NNTP-server $nntpserver" or "Not connected" |
The connection couldn't be established because
|
Check for server name, the connection to the net and possible firewalls on client or server side |
NULL | Every other message | This message is directly passed from the news server, in the most cases caused by calling a non existing newsgroup | Check the given newsgroup name |
Заметка
Эта функция не должна вызываться статически.
Внимание |
Эта функция объявлена как deprecated. Это означает, что в будущих версиях пакета она может больше не поддерживаться. |
Fetching data with a connection created with prepareConnection() is faster then a created connection with connect()
Пример
Пример 50-1. Using prepareConnection()
|
Пред. | Начало | След. |
Net_NNTP::post() | Уровень выше | Net_NNTP::quit() |