Created
November 21, 2012 20:34
-
-
Save weotch/4127482 to your computer and use it in GitHub Desktop.
Using modulo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
foreach($whatever as $i => $item) { | |
if ($i%3 === 0) //Open the ul | |
// Show the li like normal | |
if ($i%3 === 2 || count($whatever) - 1 === $i) // Close the ul | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment