我有这些变量:
$idben47 Smarty_Variable Object (3)
->value = "0.00"
->nocache = false
->scope = "Smarty root"
$idben48 Smarty_Variable Object (3)
->value = "120.00"
->nocache = false
->scope = "Smarty root"
$idben49 Smarty_Variable Object (3)
->value = "0.00"
->nocache = false
->scope = "Smarty root"
这些变量在此处分配:
$this->context->smarty->assign('idben'.$row['id_product_attribute'], $combinations[$row['id_product_attribute']]['unit_impact']);
如何在我的 tpl 文件中动态获取这些?
在我的 tpl 文件中,我已经有了 $id_attribute 变量(在本例中为 47,48,49)。我正在尝试做这样的事情:
<span>Prezzo:{$idben.id_attribute}</span>
但是系统没有得到变量...
先感谢您