PEAR Manual
This manual is provided as a courtesy. It is not an official source. Please check pear.php.net for updated information.
require_once 'Net/NNTP/Client.php';
Retrieves the number of articles in the current newsgroup.
integer - number of articles in newsgroup
since 0.3
This function can not be called statically.
Example 47-1. Using count()
... $nntp->selectGroup("php.pear.dev"); echo "number of articles: ".$nntp->count();