Some patterns created with (nested) loops. Please comment if you have any.
Code:
for ($i = 0; $i < 10; $i++) {
for ($j = 0; $j < 10; $j++) {
if (in_array($j, [0, 9, $i]) || in_array($i, [0, 9, 9 - $j])) {
echo "#";
} else {
echo ' ';
}
}
echo "\n";
}
Output:
##########
## ##
# # # #
# # # #
# ## #
# ## #
# # # #
# # # #
## ##
##########
Top comments (4)
Not strictly a pattern , also not something I made. I saw this somewhere once, I just cant seem to remember where (If its yours, please inform me).
This script prints ILU <3
not mine. just seeing this. i assume it is public domain somewhere.
lol i was looking on phone, and i guessed it right
thepracticaldev.s3.amazonaws.com/i...
funny 😁