Created
April 29, 2013 14:19
-
-
Save vojtech-dobes/5481845 to your computer and use it in GitHub Desktop.
Getting to stacktrace in n-iteration easily
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function stop($step = 1) { | |
static $i = 0; | |
$i++; | |
if ($i >= $step) { | |
$stop(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment