Zend_Service_Yahoo简介
用Yahoo!来搜索网页
Example #1 用Yahoo!来搜索网页 <?php require_once 'Zend/Service/Yahoo.php'; $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID"); $results = $yahoo->webSearch('PHP'); foreach ($results as $result) { echo $result->Title .'<br />'; } ?> 用Yahoo!来查找图片
你可以使用 Example #2 用Yahoo!来查找图片 <?php require_once 'Zend/Service/Yahoo.php'; $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID"); $results = $yahoo->imageSearch('PHP'); foreach ($results as $result) { echo $result->Title .'<br />'; } ?> Finding Local Businesses and Services with Yahoo!
You can search for local businesses and services with Yahoo! by using the Example #3 用Yahoo!查找本地商务和服务信息 <?php require_once 'Zend/Service/Yahoo.php'; $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID"); $results = $yahoo->localSearch('Apple Computers', array('zip' => '95014')); foreach ($results as $result) { echo $result->Title .'<br />'; } ?> 搜索Yahoo! 新闻
搜索Yahoo! 新闻非常简单; 使用 Example #4 搜索Yahoo! 新闻 <?php require_once 'Zend/Service/Yahoo.php'; $yahoo = new Zend_Service_Yahoo("YAHOO_APPLICATION_ID"); $results = $yahoo->newsSearch('PHP'); foreach ($results as $result) { echo $result->Title .'<br />'; } ?> Zend_Service_Yahoo 类
不同的Yahoo! 搜索类型会返回下面的这些类. 每个搜索类型返回指定类型的结果集, 我们可以很方便的对它们进行遍历,
每个结果被包含在一种类型的结果集对象中. 所有这些对象都实现了
Zend_Service_Yahoo_ResultSet每类搜索特定的结果集都由这个基类扩展而成 每类搜索特定的结果集都会返回这个搜索特定的 Zend_Service_Yahoo_Result 对象. Zend_Service_Yahoo_ResultSet::totalResults()
int
totalResults
( void
返回搜索结果的数量 Properties
Zend_Service_Yahoo_WebResultSet
Zend_Service_Yahoo_ImageResultSet
Zend_Service_Yahoo_LocalResultSet
Zend_Service_Yahoo_NewsResultSet
Zend_Service_Yahoo_Result每类搜索特定的结果都由这个基类扩展而成 Properties
Zend_Service_Yahoo_WebResult
每一个网页搜索结果作为一个 属性
Zend_Service_Yahoo_ImageResult
每一个图片搜索结果作为一个 属性
Zend_Service_Yahoo_LocalResult
每一个本地搜索结果以 属性
Zend_Service_Yahoo_NewsResult
每一个新闻搜索结果作为一个 属性
Zend_Service_Yahoo_Image
所有的Yahoo!图片和新闻搜索返回的图片都作为
Properties
|
|