first()require_once 'Net/NNTP/Client.php';
Net_NNTP_Client::first
    ( void
   )Retrieves the number of the first article in the current newsgroup.
     integer - lowest article number in newsgroup
    
since 0.3
This function can not be called statically.
Using first()
<?php
...
$nntp->selectGroup("php.pear.dev");
echo "lowest message number: ".$nntp->first();
?>