- Output for 7.0.0 - 7.0.3
- Fatal error: Redefinition of parameter $_ in /in/m1vgl on line 3
Process exited with code 255. - Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
- int(3)
<?php
$a = function($_, $_, $_) {
var_dump($_);
return true;
};
$a(1,2,3);