Searching Yahoo! Site Explorer's PageData is simple; just use the
pageDataSearch() method, as in the following example. For full
details, please see the Yahoo!
Site Explorer PageData Documentation.
Example 915. Searching Yahoo! Site Explorer's PageData
<?php
$yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID");
$results = $yahoo->pageDataSearch('http://framework.zend.com/');
foreach ($results as $result) {
echo $result->Title .'<br />';
}




