gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 08:33:22 31 4
gpt4 key购买 nike

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

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

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

最佳答案

试试这个:

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

关于Magento - 检查商店是否存在的最快方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24484778/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com