使用Zend(Zend_Service_Amazon)查询Amazon服务时,如何按日期对结果进行排序?

时间:2010-11-14 23:21:30

标签: php web-services zend-framework amazon-web-services

我已经开始使用Zend with PHP来针对亚马逊进行产品搜索。但是,我无法弄清楚如何按日期对产品进行排序 - 因为我想找到与我的关键字匹配的最新产品。 The Amazon documentation没有太多关于如何对结果进行排序的信息。这是我的代码:

$amazon = new Zend_Service_Amazon('AMAZON_API_KEY', 'US', 'AMAZON_SECRET_KEY');
$results = $amazon->itemSearch(array('SearchIndex' => 'Books',
                                     'Keywords' => 'Cooking'
));
foreach ($results as $result) {
    echo $result->Title . '<br />';
}

1 个答案:

答案 0 :(得分:2)