last
()require_once 'Net/NNTP/Client.php';
Net_NNTP_Client::last
( void
)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();
?>