Net_NNTP::min()

Net_NNTP::min() – 記事番号の最小値を取得する

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.

現在選択されているニュースグループの最小の記事番号を取得します。

Return value

integer - 記事番号の最小値。

Note

This function can not be called statically.

Example

min() の使用

<?php
...
$nntp->selectGroup("php.pear.dev");
echo 
"記事番号の最小値: ".$nntp->min();
?>