Net_NNTP::last()

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

Synopsis

require_once 'Net/NNTP.php';

integer Net_NNTP::last ( )

Description

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

Return value

integer - 記事番号の最大値。

Note

0.3 以降

This function can not be called statically.

Example

last() の使用

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