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