RosettaCodeData/Task/Higher-order-functions/PHP/higher-order-functions-1.php
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

9 lines
114 B
PHP

function first($func) {
return $func();
}
function second() {
return 'second';
}
$result = first('second');