require_once 'Net/NNTP.php';
integer Net_NNTP::max ()
integer Net_NNTP::max
This function is deprecated. That means that future versions of this package may not support it anymore.
Retrieves the highest message number in the current selected newsgroup
integer - highest message number
This function can not be called statically.
Example 38-1. Using max()
... $nntp->selectGroup("php.pear.dev"); echo "highest message number: ".$nntp->max();