Skip to content

Instantly share code, notes, and snippets.

@2dpi
Created July 13, 2012 07:49
Show Gist options
  • Save 2dpi/3103448 to your computer and use it in GitHub Desktop.
Save 2dpi/3103448 to your computer and use it in GitHub Desktop.
PHP: array odd and even
<?php
/* add a class to define odd and even output from an array */
echo ($key%2) ? " even" : " odd";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment