Skip to content

Instantly share code, notes, and snippets.

@praswicaksono
Created November 11, 2016 08:27
Show Gist options
  • Save praswicaksono/2e17089bf5fafc4d7ab736c97626f557 to your computer and use it in GitHub Desktop.
Save praswicaksono/2e17089bf5fafc4d7ab736c97626f557 to your computer and use it in GitHub Desktop.
<?php
for ($i = 0; $i < 10; $i++) {
for ($x = 0; $x < 10; $x++) {
if ($i == 0 || $i == 9) {
echo '*';
continue;
}
if ($x == 0 || $x == 9) {
echo '*';
continue;
}
echo ' ';
}
echo PHP_EOL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment