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