Skip to content

Instantly share code, notes, and snippets.

@kobus1998
Created January 22, 2018 15:59
Show Gist options
  • Save kobus1998/c5ce70c120ca296bed92b6cc4f914a80 to your computer and use it in GitHub Desktop.
Save kobus1998/c5ce70c120ca296bed92b6cc4f914a80 to your computer and use it in GitHub Desktop.
Short pipeline function
<?php
function pipeline ($val, array $pipes)
{
foreach($pipes as $pipe)
{
$val = $pipe($val);
}
return $val;
}
$v = 1;
echo pipeline($v, [
function ($val) { return $val ++; },
function ($val) { return $val --; },
function ($val) { return $val += 100; },
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment