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