5 lines
95 B
PHP
5 lines
95 B
PHP
function first($func) {
|
|
return $func();
|
|
}
|
|
|
|
$result = first(function() { return 'second'; });
|