Net_NNTP
[ class tree: Net_NNTP ] [ index: Net_NNTP ] [ all elements ]

Source for file selectArticle.php

Documentation is available at selectArticle.php

  1. $groupsummary = $nntp->selectGroup('php.pear.general');
  2. if (PEAR::isError($groupsummary)) {
  3.     // handle error
  4. }
  5.  
  6. $article = $nntp->selectArticle(5);
  7. if (PEAR::isError($article)) {
  8.     // handle error
  9. }
  10.  
  11. if ($article === false) {
  12.     // article does not exist
  13. } else {
  14.     // success
  15. }

Documentation generated on Mon, 11 Mar 2019 15:53:47 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.