Skip to content

Instantly share code, notes, and snippets.

@jswebschmiede
Created November 16, 2012 00:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jswebschmiede/4082793 to your computer and use it in GitHub Desktop.
Save jswebschmiede/4082793 to your computer and use it in GitHub Desktop.
Jedes 2. Element / Jedes X-te Element im Array
// Array
$array = array(1, 2, 3, 4, 5, 6, 7, 8, 9);
foreach($array as $key => $value) {
if(($key%2)===0 && $key > 0) {
echo $value;
}
}
// Die Ausgabe sieht dann wie folgt aus: 2,4,6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment