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.
Using max()
<?php
...
$nntp->selectGroup("php.pear.dev");
echo "highest message number: ".$nntp->max();
?>