Skip to content

Instantly share code, notes, and snippets.

@bazo
Last active December 19, 2015 16:19
Show Gist options
  • Save bazo/5983382 to your computer and use it in GitHub Desktop.
Save bazo/5983382 to your computer and use it in GitHub Desktop.
<?php
$multiply = function($a, $b) {
return $a * $b;
};
$add = function($a, $b) {
return $a + $b;
}
$calc = function($strategy, $args = []) {
return call_user_func_array($strategy, $args);
};
echo $calc($multiply, [3, 2]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment