如何使用 php 在 magento 中获取商店名称?
例如:
我在magento有两家商店:
domain.com/store/jp
domain.com/store/en
如何使用 php 获取商店名称?你能给我返回商店名称的php代码行吗?jp或en _
只是分享我的发现:
获取店铺数据
Mage::app()->getStore();
商店主页网址
Mage::app()->getStore()->getHomeUrl();
商店代码
Mage::app()->getStore()->getCode();
活跃
Mage::app()->getStore()->getIsActive();
网站 ID
Mage::app()->getStore()->getWebsiteId();
店铺名称
Mage::app()->getStore()->getName();
商店编号
Mage::app()->getStore()->getStoreId();
这是一个商店代码,您可以通过以下方式获取它:
$code = Mage::app()->getStore()->getCode();