Question

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

No correct solution

OTHER TIPS

Could you just use PHP's fmod function?

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

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top