7 lines
132 B
PHP
7 lines
132 B
PHP
<?php old_function Test $b (
|
|
$b++;
|
|
return($b);
|
|
);
|
|
$a = Test(1);
|
|
echo $a?>
|
|
|