Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17999 программистов и 1637 роботов. Сейчас ищут 2102 программиста ...
Net_NNTP_Client::first()
Вернуться к: Net_NNTP_Client
Net_NNTP_Client::first()
Net_NNTP_Client :: () – Get the number of the first article in the current newsgroup
Synopsis
require_once 'Net/NNTP/Client.php';
public integer Net_NNTP_Client::first ( void )
Retrieves the number of the first article in the current newsgroup.
Return value
integer - lowest article number in newsgroup
Note
since 0.3
This function can not be called statically.
Example
Using first()
<?php
...
$nntp->selectGroup("php.pear.dev");
echo "lowest message number: ".$nntp->first();
?>
Вернуться к: Net_NNTP_Client