php-liquid icon indicating copy to clipboard operation
php-liquid copied to clipboard

Can I use the % operator?

Open vrgenl opened this issue 3 years ago • 1 comments

Hi!

I have an issue what I cant seem to solve. I have a for loop and I want to echo something every 4th iteration of the for loop.

Normaly I would something like index % 4 === 1 that echo that thing but this is not working.

Anyone know how I can solve this?

vrgenl avatar Mar 01 '22 18:03 vrgenl

You want the modulo filter as documented in the original Ruby implementation:

https://shopify.github.io/liquid/filters/modulo/

schmoove avatar Feb 08 '24 09:02 schmoove