Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18034 программиста и 1643 робота. Сейчас ищет 1501 программист ...
Net_NNTP::max()
Вернуться к: Net_NNTP
Net_NNTP::max()
Net_NNTP::max() – get highest message number
Synopsis
require_once 'Net/NNTP.php';
integer Net_NNTP::max ( )
This function is deprecated. That means that future versions of this package may not support it anymore.
Retrieves the highest message number in the current selected newsgroup
Return value
integer - highest message number
Note
This function can not be called statically.
Example
Using max()
<?php
...
$nntp->selectGroup("php.pear.dev");
echo "highest message number: ".$nntp->max();
?>
Вернуться к: Net_NNTP