2015-11-03 105 views

回答

0

你可以得到由session

$vistitorId = Mage::getModel('core/session')->getVisitorId(); 
0

訪問者ID來獲得餅乾

Mage::app()->getRequest()->getCookie(); 

獲得會話ID

$session = Mage::getSingleton('customer/session', array('name' => 'frontend')); 
echo $session->getId(); 
echo $session->getCustomerId(); 

FYI:有可用於最近觀看產品

默認Magento的功能,請檢查下面的網址

Magento: Show Visitor's Recently Viewed Product