私はこれらの変数を持っています:
$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>
しかし、システムは変数を取得しません...
前もって感謝します