Skip to content

Instantly share code, notes, and snippets.

@annalinneajohansson
Created July 26, 2013 05:46
Show Gist options
  • Save annalinneajohansson/6086581 to your computer and use it in GitHub Desktop.
Save annalinneajohansson/6086581 to your computer and use it in GitHub Desktop.
odd / even iteration
<?php
$i = 0;
$even_or_odd = ( $i % 2 == 0 ) ? 'even' : 'odd';
++$i;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment