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
I know this is old, but you can always
$wait = 'sleep'; $wait();