服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > magento教程 >

Magento检索Store对象

时间:2016-10-22 16:01来源:未知 作者:最模板 点击:
Magento检索Store对象 1. 根据Store View的ID或者Name来取得Store对象 Php代码 收藏代码 $store = Mage::app()-getStore({$store_id|$store_code}); echo $store-getId(); echo $store-getCode(); 2. 取得默认的Store View的Store对
Magento检索Store对象
1. 根据Store View的ID或者Name来取得Store对象 
Php代码  收藏代码
$store = Mage::app()->getStore({$store_id|$store_code});  
  
echo $store->getId();  
echo $store->getCode();  
 
 
2. 取得默认的Store View的Store对象 
Php代码  收藏代码
$store = Mage::app()->getDefaultStoreView();  
 
 
3. 取得当前所在的Store对象 
Php代码  收藏代码
$store = Mage::app()->getStore();  
echo $store->getCode();  
 
当然,一般只有访问前端界面时,用户才处于某一个Store View. 
(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------