Skip to content

Instantly share code, notes, and snippets.

@jbbn
Last active June 8, 2020 13:42
Show Gist options
  • Save jbbn/047468786e6aaaa6648e94e082453ca2 to your computer and use it in GitHub Desktop.
Save jbbn/047468786e6aaaa6648e94e082453ca2 to your computer and use it in GitHub Desktop.
[draft] improvised php pipe function
<?php
function pipe ($fns) {
return function ($value) use ($fns) {
return array_reduce(
$fns
, function ($previousValue, $fn) {
return call_user_func($fn, $previousValue);
}
, $value
);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment