RosettaCodeData/Task/Higher-order-functions/PHP/higher-order-functions-2.php

6 lines
95 B
PHP
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
function first($func) {
return $func();
}
$result = first(function() { return 'second'; });