Skip to content

Instantly share code, notes, and snippets.

@opr
Created February 28, 2014 14:20
Show Gist options
  • Save opr/9271871 to your computer and use it in GitHub Desktop.
Save opr/9271871 to your computer and use it in GitHub Desktop.
<?php
displayNumbers(50);
function displayNumbers($i)
{
if($i == 0) return;
echo $i." ";
displayNumbers($i-1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment