Skip to content

Instantly share code, notes, and snippets.

@novia713
Created July 1, 2019 14:02
Show Gist options
  • Save novia713/c5a49c9f46db4b558a3902a00c5b5ba1 to your computer and use it in GitHub Desktop.
Save novia713/c5a49c9f46db4b558a3902a00c5b5ba1 to your computer and use it in GitHub Desktop.
[PHP FUNCTIONAL PROGRAMMING PATTERNS] Function builder
<?php
$discount = function($percent){
return function($price) use ($percent){
return ($price - ($price * $percent * 0.01));
};
};
$half_off = $discount(50);
echo $half_off(500);
$quarter_off = $discount(25);
echo $quarter_off(500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment