Skip to content

Instantly share code, notes, and snippets.

@fierroformo
Last active December 31, 2015 18:49
Show Gist options
  • Save fierroformo/8029160 to your computer and use it in GitHub Desktop.
Save fierroformo/8029160 to your computer and use it in GitHub Desktop.
Pyramid of asterisks
<?php
$n = 5;
for($i = $n; $i>=0; $i--) {
echo str_repeat(' ', $i).str_repeat('* ', $n - $i)."<br>";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment