Current File : //home/strato/chroot/opt/RZphp81/includes/doc/Net_NNTP/docs/examples/phpdoc/selectArticle.php
$groupsummary = $nntp->selectGroup('php.pear.general');
if (PEAR::isError($groupsummary)) {
    // handle error
}

$article = $nntp->selectArticle(5);
if (PEAR::isError($article)) {
    // handle error
}

if ($article === false) {
    // article does not exist
} else {
    // success
}