这是我之前的问题:如何转换十进制 $attribute['text']; 在opencart中变成一小部分
我有一个在中声明startup.php
和定义的辅助函数helper/dec2frac.php
我正在尝试category.tpl
使用以下代码从文件中调用辅助函数:
<?php if ($product['attribute_groups']) { ?>
<?php foreach ($product['attribute_groups'] as $attribute_group) { ?>
<?php foreach ($attribute_group['attribute'] as $attribute) { ?>
<?php /*var_dump($attribute);*/
if($attribute['name'] == "Adjuster Position")
{
//echo("<h1>HELLLO</h1>");
dec2frac($attribute['text']);
}
?>
...但我收到此错误消息:
致命错误:在 startup.php helper/dec2frac.php 中调用未定义函数 dec2frac()
如何在category.tpl
文件中调用我的辅助函数?我需要在我的category.php
文件中引用辅助函数吗?