Skip to content

Instantly share code, notes, and snippets.

@williankeller
Created February 2, 2016 11:43
Show Gist options
  • Select an option

  • Save williankeller/f81422fd693300c9bd25 to your computer and use it in GitHub Desktop.

Select an option

Save williankeller/f81422fd693300c9bd25 to your computer and use it in GitHub Desktop.
public function addSpace($n, $string = '') {
if ($n === 0) {
return $string;
}
else {
$space = ' ';
return $space .= addSpace($n - 1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment