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.php';
integer Net_NNTP::min ()
integer Net_NNTP::min
This function is deprecated. That means that future versions of this package may not support it anymore.
Retrieves the lowest message number in the current selected newsgroup
integer - lowest message number
This function can not be called statically.
Example 47-1. Using min()
... $nntp->selectGroup("php.pear.dev"); echo "lowest message number: ".$nntp->min();