SyntaxFix
Write A Post
Hire A Developer
Questions
Depending on situation where you need this, maybe you can use anonymous functions like this:
$greet = function($name) { echo('Hello ' . $name); }; $greet('World');
...then you can set new function to the given variable any time