23 pers. connectées au site
Manuel Pear
Net_NNTP_Client::first()
Net_NNTP_Client::
first() -- Get the number of the first article in the current newsgroup
Synopsis
require_once 'Net/NNTP/Client.php';
publicentierNet_NNTP_Client::first
Description
Retrieves the number of the first article in the current newsgroup.
Valeur retournée
integer - lowest article number in newsgroup
Note
since 0.3
Cette fonction ne peut pas être appelée de façon statique.
Exemple
Exemple 54-1. Using first()
- <?php
- ...
- $nntp->selectGroup("php.pear.dev");
- echo "lowest message number: ".$nntp->first(
- ?>
|
Remonter