Skip to content

Instantly share code, notes, and snippets.

@flashwave
Created July 22, 2019 16:20
Show Gist options
  • Save flashwave/8825ac89686770d669c69ecab228748a to your computer and use it in GitHub Desktop.
Save flashwave/8825ac89686770d669c69ecab228748a to your computer and use it in GitHub Desktop.
<?php
function func(int $a, int $b): string {
return (string)($a + $b);
}
$f = function(string $name, ...$args) {
return $name(...$args);
};
echo <<<MEWOW
{$f('func', 1, 2)}
MEWOW;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment