Search for in the Packages This site (using Yahoo!) Developers Developer mailing list General mailing list CVS commits mailing list
require_once 'Net/NNTP.php';
integer Net_NNTP::first ()
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.
Example 54-1. Using first()
<?php ... $nntp->selectGroup("php.pear.dev"); echo "lowest message number: ".$nntp->first(); ?>