Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Magento 中获得访客 ID?我在“客户”>“客人”下的管理中看到它,但是如何在前端的页面上打印它?
我为普通客户找到了这个:
<?php echo Mage::getSingleton('customer/session')->getId(); ?>
$visitorData = Mage::getSingleton('core/session')->getVisitorData(); echo $visitorData['visitor_id'];
Mage::getModel('core/session')->getVisitorId();
祝你好运!