RosettaCodeData/Task/Function-composition/PHP/function-composition-1.php

9 lines
197 B
PHP

<?php
function compose($f, $g) {
return function($x) use ($f, $g) { return $f($g($x)); };
}
$trim_strlen = compose('strlen', 'trim');
echo $result = $trim_strlen(' Test '), "\n"; // prints 4
?>