mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
5 lines
93 B
PHP
5 lines
93 B
PHP
<?php
|
|
for ($i = 6, $j = 0;
|
|
$i != $j;
|
|
print "$i - $j", print '<br />', $i--, $j++);
|