获取 Magento 配置信息

发布于 2024-09-29 20:01:59 字数 105 浏览 3 评论 0原文

我试图从 Magento 配置中获取基本 url 和媒体目录,并尝试将它们用于包含图像的模板。我只了解了 Mage::getConfig()。我不知道下一步该做什么...

I'm trying to get the base url and the media directory from the Magento configuration and I'm trying to use them for a template that has images. I've only gotten as far Mage::getConfig(). I'm not sure what to do next...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

纵性 2024-10-06 20:01:59
Mage::getBaseDir ($type='base')

http://freegento.com/doc/d8/dcb/class_mage.html#7c9023c03db151ba782ec95ab289f2fe

或者

<?php echo Mage::getURL('customerfolder/subfolder')."images/payment_types.gif" ?>

这将返回 http://www.yourdomain.com/customerfolder/subfolder< /a>

Mage::getBaseDir ($type='base')

http://freegento.com/doc/d8/dcb/class_mage.html#7c9023c03db151ba782ec95ab289f2fe

Or also

<?php echo Mage::getURL('customerfolder/subfolder')."images/payment_types.gif" ?>

This will return would return http://www.yourdomain.com/customerfolder/subfolder

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文