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

use*_*916 2 magento

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

Mage::app()->getStore($storeCode);
Run Code Online (Sandbox Code Playgroud)

但如果商店不存在,它只打印404页面.

Mar*_*ius 6

试试这个:

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