Created
May 14, 2019 16:29
-
-
Save dikiwidia/3a65d4c58e541899cd3f8145197be430 to your computer and use it in GitHub Desktop.
Menjawab pertanyaan : https://www.testdome.com/questions/php/pipeline/20304?visibility=17&skillId=5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Pipeline | |
{ | |
public static function make_pipeline(...$funcs) | |
{ | |
return function($arg) use ($funcs) | |
{ | |
//Gunakan Foreach | |
foreach ($funcs as $func) | |
{ | |
$arg = $func($arg); | |
} | |
return $arg; | |
}; | |
} | |
} | |
$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