first
()require_once 'Net/NNTP/Client.php';
Net_NNTP_Client::first
( void
)ニュースグループの最初の記事の番号を取得します。
integer
- ニュースグループの記事番号の最小値。
0.3 以降
This function can not be called statically.
first() の使用
<?php
...
$nntp->selectGroup("php.pear.dev");
echo "記事番号の最小値: ".$nntp->first();
?>