Skip to content

Instantly share code, notes, and snippets.

@2dpi
Created July 13, 2012 07:51
Show Gist options
  • Save 2dpi/3103463 to your computer and use it in GitHub Desktop.
Save 2dpi/3103463 to your computer and use it in GitHub Desktop.
PHP array first / last
<?php
/* define the first or last element in an array */
if($key == "0") echo ' first';
if(count($myVar)==$key+1) echo ' last';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment