我有商店代码,如何检查该商店是否存在?我试过了:
Mage::app()->getStore($storeCode);
但如果商店不存在,则只打印404页面。
答案 0 :(得分:6)
试试这个:
$store = Mage::getModel('core/store')->load($storeCode);
if ($store->getId()) {
//the store exists
}
else {
//the store does not exist
}