Frage

in magneto 2 we have condition operators such as

$operators = [
            '>=' => __('equals or greater than'),
            '<=' => __('equals or less than'),
            '>' => __('greater than'),
            '<' => __('less than'),
        ];

is there any operator for "multiple of specific number"

e.g:

multiple of 2 is 4,6,8,10

multiple of 3 is 6,9,12,15

kindly advise. Thanks

Keine korrekte Lösung

Andere Tipps

Could you just use PHP's fmod function?

I.e. "Is X a multiple of Y?"

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit magento.stackexchange
scroll top