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

Source for file v2_0_comment_getReplies.php

Documentation is available at v2_0_comment_getReplies.php

  1. <?php
  2.  
  3. require_once 'config.php';
  4.  
  5. require_once 'Services/Digg2.php';
  6.  
  7. $sd = new Services_Digg2;
  8. $sd->setVersion('2.0');
  9.  
  10. $result $sd->comment->getReplies(array(
  11.     'comment_id' => '20100729223726:4fef610331ee46a3b5cbd740bf71313e'
  12. ));
  13.  
  14. foreach ($result->comments as $comment{
  15.     echo "Reply to comment: {$comment->text}.\n";
  16. }
  17.  
  18. ?>

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