Skip to content

Instantly share code, notes, and snippets.

@carousel
Last active December 4, 2017 21:37
Show Gist options
  • Save carousel/df43a1726862c67572fe8ab0509f683b to your computer and use it in GitHub Desktop.
Save carousel/df43a1726862c67572fe8ab0509f683b to your computer and use it in GitHub Desktop.
<?php
function stackUnwind($n)
{
if ($n > 0) {
echo 'Parameter: ' . $n . PHP_EOL;
stackUnwind($n - 1);
}
foreach (debug_backtrace() as $key => $val) {
foreach ($val['args'] as $args) {
echo $args;
}
}
echo ' Stack unwindng: ' . $n . PHP_EOL;
}
stackUnwind(5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment