使用php获取magento中的商店名称

时间:2012-11-16 14:18:49

标签: php magento

如何使用php获取magento中的商店名称?

例如:

我在magento有两家商店:

domain.com/store/jp
domain.com/store/en

如何使用php获取商店名称?你能给我一个返回商店名称的PHP代码行吗? jp en

2 个答案:

答案 0 :(得分:15)

分享我发现的内容:

获取商店数据

Mage::app()->getStore();

存储主页网址

Mage::app()->getStore()->getHomeUrl();

商店代码

Mage::app()->getStore()->getCode();

有效

Mage::app()->getStore()->getIsActive();

网站ID

Mage::app()->getStore()->getWebsiteId();

商店名称

Mage::app()->getStore()->getName();

商店ID

Mage::app()->getStore()->getStoreId();

© 资料来源:how to get store information in Magento?来自@ chapagain

答案 1 :(得分:6)

这是商店代码,您可以通过以下方式获取:

$code = Mage::app()->getStore()->getCode();