7 lines
79 B
PHP
7 lines
79 B
PHP
<?php
|
|
function a() {
|
|
static $i = 0;
|
|
print ++$i . "\n";
|
|
a();
|
|
}
|
|
a();
|