php – 根据product_id获取magento产品的查看次数

前端之家收集整理的这篇文章主要介绍了php – 根据product_id获取magento产品的查看次数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在Magento的类别列表页面上显示查看次数.这些数据看起来像以前可以通过reports / product_collection访问,但我找不到正确访问它的方法.

我基本上想提供一个产品ID并将所述产品的查看次数归还给我.

您可以通过Mage_Reports_Model_Resource_Product_Collection模型获取视图计数.
// set $to and $from to an empty string to disable time range filtering
$from = '2012-01-01';
$to = now();
$productIds = array(9,35); // your product ids,(works as an int,too) 

$reports = Mage::getResourceModel('reports/product_collection')
    ->addViewsCount($from,$to)
    ->addFieldToFilter('entity_id',$productIds);

集合中的每个项目都是具有views属性集的目录/产品实例,因此您可以使用$product-> getViews()来获取计数.

如果您不想加载整个产品模型并且只需要查看计数,则可以这样:

$resource = Mage::getResourceModel('reports/event');
$select = $resource->getReadConnection()->select()
    ->from(array('ev' => $resource->getMainTable()),array(
        'product_id' => 'object_id','view_count' => new Zend_Db_Expr('COUNT(*)')
    ))
    // join for the event type id of catalog_product_view
    ->join(
        array('et' => $resource->getTable('reports/event_type')),"ev.event_type_id=et.event_type_id AND et.event_name='catalog_product_view'",''
    )
    ->group('ev.object_id')

    // add required filters
    ->where('ev.object_id IN(?)',productIds)
    ->where('ev.logged_at >= ?',$from)
    ->where('ev.logged_at <= ?',$to);

$result = $resource->getReadConnection()->fetchPairs($select);

这为您提供了一个数组,键是产品ID,值是视图计数.

猜你在找的PHP相关文章