Skip to content

Instantly share code, notes, and snippets.

@sedera-tax
Created January 15, 2021 14:45
Show Gist options
  • Save sedera-tax/2cd9f131fdd9e1474ee180f263f7dd20 to your computer and use it in GitHub Desktop.
Save sedera-tax/2cd9f131fdd9e1474ee180f263f7dd20 to your computer and use it in GitHub Desktop.
Make_pipeline
<?php
class Pipeline
{
public static function make_pipeline()
{
return $result = function($arg) use ($funcs)
{
foreach($funcs as $func)
{
if(!isset($value))
{
$value = $func($arg);
}
else
{
$value = $func($value);
}
}
return $value;
};
return $result;
}
}
$fun = Pipeline::make_pipeline(function($x) { return $x * 3; }, function($x) { return $x + 1; },
function($x) { return $x / 2; });
echo $fun(3); # should print 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment