根据变量显示X输入

时间:2018-07-23 08:42:47

标签: php prestashop

我想根据Prestashop配置变量显示X输入。

Configuration::updateValue('BLOCKPAYMENT_NB', 3);

根据输入的值,将显示X字段。

怎么可能呢?

谢谢。

1 个答案:

答案 0 :(得分:0)

        Configuration::updateValue('BLOCKPAYMENT_NB', 3);
        $nbPayment = (int)Configuration::get('BLOCKPAYMENT_NB');

        for ($i = 0;$i < $nbPayment; $i++) {
            Configuration::updateValue('BLOCKPAYMENT_NB_'.$i, 30);
        }