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