require_once 'Net/NNTP.php';
integer Net_NNTP::first ()
integer Net_NNTP::first
Retrieves the lowest message number in the current selected newsgroup
integer - lowest message number
since 0.3
This function can not be called statically.
Example 38-1. Using first()
... $nntp->selectGroup("php.pear.dev"); echo "lowest message number: ".$nntp->first();