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

Source for file v2_0_search_search.php

Documentation is available at v2_0_search_search.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->search->search(array(
  11.     'query' => 'war',
  12.     'domain' => 'cnn.com'
  13. ));
  14.  
  15. foreach ($result->stories as $story{
  16.     echo "War story on cnn.com: {$story->title} story_id: {$story->story_id}.\n";
  17. }
  18.  
  19. ?>

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