Magento - 检索Store对象

1. 根据Store View的ID或者Name来取得Store对象
  $store = Mage::app()->getStore({$store_id|$store_code});

  echo $store->getId();
  echo $store->getCode();


2. 取得默认的Store View的Store对象
  $store = Mage::app()->getDefaultStoreView();


3. 取得当前所在的Store对象
 $store = Mage::app()->getStore();
 echo $store->getCode();

当然,一般只有访问前端界面时,用户才处于某一个Store View.

你可能感兴趣的:(PHP)