Skip to content

Instantly share code, notes, and snippets.

@krmgns
Last active January 20, 2019 01:38
Show Gist options
  • Save krmgns/e3fd79b91bfe5c047e914fdfa1d4ab47 to your computer and use it in GitHub Desktop.
Save krmgns/e3fd79b91bfe5c047e914fdfa1d4ab47 to your computer and use it in GitHub Desktop.
PHP: copy_function()
<?php
function copy_function($name) {
$reflection = new ReflectionFunction($name);
return function(...$arguments) use($reflection) {
return call_user_func_array([$reflection, 'invoke'], $arguments);
};
}
$fn = copy_function('is_int');
var_dump($fn(123));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment