2

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

例如:

我在magento有两家商店:

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

如何使用 php 获取商店名称?你能给我返回商店名称的php代码行吗?jpen _

4

2 回答 2

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();

商店编号

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

© 来源:如何在 Magento 中获取商店信息?@chapagain

于 2012-11-16T14:46:30.490 回答
6

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

$code = Mage::app()->getStore()->getCode();
于 2012-11-16T14:29:28.087 回答