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