Skip to content

Instantly share code, notes, and snippets.

@f3ath
Last active March 28, 2018 19:14
Show Gist options
  • Save f3ath/7a3dc7cf8cac98a15d860832ebb37a68 to your computer and use it in GitHub Desktop.
Save f3ath/7a3dc7cf8cac98a15d860832ebb37a68 to your computer and use it in GitHub Desktop.
<?php
namespace Foo {
function bar() {
echo 'yo';
}
}
namespace {
function myFunction(callable $c) {
$c();
}
$func = 'Foo\\bar';
myFunction($func);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment