6 lines
96 B
PHP
6 lines
96 B
PHP
foreach (range(1, 5) as $i) {
|
|
foreach (range(1, $i) as $j) {
|
|
echo '*';
|
|
}
|
|
echo "\n";
|
|
}
|