如何在magento中调用助手?

How to call helper in magento?

我试图在块文件中调用我的助手,但我无法加载助手。我发现以下错误

Fatal error: Class 'Mage_Catalog_Product_Helper_Data' not found in C:\xampp\htdocs

提前致谢。

请尝试以下代码。

$helper = Mage::helper('catalog/product');

如果在controller或者block中调用helper文件,使用下面的代码:

$helper = Mage::helper('catalog/product');

如果在phtml文件中调用helper文件,使用下面的代码:

$helper = $this->helper('catalog/product');