Searching Yahoo! News is simple; just use the newsSearch()
method, as in the following example. For full details, please see the Yahoo! News Search
Documentation.
Example 913. Searching Yahoo! News
<?php
$yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID");
$results = $yahoo->newsSearch('PHP');
foreach ($results as $result) {
echo $result->Title .'<br />';
}




