integer Net_NNTP::first (
)
Retrieves the lowest message number in the current selected newsgroup
integer
- lowest message number
since 0.3
This function can not be called statically.
Using first()
<?php
...
$nntp->selectGroup("php.pear.dev");
echo "lowest message number: ".$nntp->first();
?>