11 lines
163 B
PHP
11 lines
163 B
PHP
<?php $a = 1;
|
|
old_function Test $a (
|
|
if($a<3):
|
|
return(3);
|
|
endif;
|
|
);
|
|
|
|
if($a < Test($a)):
|
|
echo "$a\n";
|
|
$a++;
|
|
endif?>
|