Magento - 检查商店是否存在的最快方法

时间:2014-06-30 07:17:44

标签: magento

我有商店代码,如何检查该商店是否存在?我试过了:

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

但如果商店不存在,则只打印404页面。

1 个答案:

答案 0 :(得分:6)

试试这个:

$store = Mage::getModel('core/store')->load($storeCode);
if ($store->getId()) {
    //the store exists
}
else {
    //the store does not exist
}