Skip to content

Instantly share code, notes, and snippets.

@torounit
Created February 18, 2015 06:41
Show Gist options
  • Save torounit/883f016f0ff51f535557 to your computer and use it in GitHub Desktop.
Save torounit/883f016f0ff51f535557 to your computer and use it in GitHub Desktop.
PHPでRubyっぽいループ
<?php
//each
array_walk($array, function($item) {
});
//upto
array_walk(range(1,5), function($i) {
});
//downto
array_walk(array_reverse(range(1, 5)), function($i) {
});
//step
array_walk(range(10, 100, 5), function($i) {
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment