Skip to content

Instantly share code, notes, and snippets.

@yudaprawira
Last active September 20, 2016 09:26
Show Gist options
  • Save yudaprawira/771349707488d5133744cae82c9153b5 to your computer and use it in GitHub Desktop.
Save yudaprawira/771349707488d5133744cae82c9153b5 to your computer and use it in GitHub Desktop.
PHP Piramida Asterisk
<?php
$GLOBALS['n'] = 15; YP('*', $GLOBALS['n'], 'down') . YP('*', 2, 'up');
function YP($t, $c, $tipe='down') {
echo str_repeat('&nbsp;', $GLOBALS['n'] - $c) . str_repeat($t, $c) . "<br/>";
$tipe=='down' ? $c-- : $c++; if ($c>0 && $c<=$GLOBALS['n']) YP($t, $c, $tipe);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment