Skip to content

Instantly share code, notes, and snippets.

@minedun6
Last active November 12, 2017 10:35
Show Gist options
  • Save minedun6/c4b3dd673ee965139b5ee485ce54e2bb to your computer and use it in GitHub Desktop.
Save minedun6/c4b3dd673ee965139b5ee485ce54e2bb to your computer and use it in GitHub Desktop.
<?php
if (!function_exists('times')) {
function times ($i, $callback) {
return collect(range(1, $i))->each($callback)
}
}
// Usage
times(10, function ($i) { echo $i; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment