Net_NNTP::min()

Net_NNTP::min() – get lowest message number

Synopsis

require_once 'Net/NNTP.php';

integer Net_NNTP::min ( )

Description

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

Return value

integer - lowest message number

Note

This function can not be called statically.

Example

Using min()

<?php
...
$nntp->selectGroup("php.pear.dev");
echo 
"lowest message number: ".$nntp->min();
?>