RosettaCodeData/Task/Function-composition/PHP/function-composition-2.php
2023-07-01 13:44:08 -04:00

8 lines
234 B
PHP

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