Is it possible to alias a function with a different name in PHP? Suppose we have a function with the name sleep. Is there a way to make an alias called wa
sleep
wa
You can look at lambdas also if you have PHP 5.3
$wait = function($v) { return sleep($v); };