vote up 1 vote down star

is it possible to alias a function with a different name in PHP? if yes how ?

suppose we have this function sleep();

is there any quick way to make an alias called wait();

without writing this code

function wait ($seconds)  {
    sleep($seconds);
}
flag

8 Answers

vote up 5 vote down check

You can look at lambdas also if you have PHP 5.3

$wait = function($v) { return sleep($v); };
link|flag
vote up 2 vote down

you can use runkit extension

http://us.php.net/manual/en/function.runkit-function-copy.php

link|flag
vote up 3 vote down

yup, function wait ($seconds) { sleep($seconds); } is the way to go. But if you are worried about having to change wait() should you change the number of parameters for sleep() then you might want to do the following instead:

function wait() { 
  return call_user_func_array("sleep", func_get_args());
}
link|flag
func_get_args() will work like that only in PHP > 5.3 where you can use it in a parameter list. In PHP < 5.3 you have to use a temporary variable: $args = func_get_args(); return call_user_unc_array('sleep', $args); – Marko Nov 6 at 18:57
vote up 7 vote down

Nope, but you can do this:

$wait = 'sleep';
$wait($seconds);

This way you also resolve arguments-number-issues

link|flag
variable variables can get really confusing though. I don't think this is the best way to solve the problem here. – GSto Nov 6 at 16:47
2  
@GSto this wasn't meant to be the best solution. it was just a possibility. I can't believe it's been upvoted so much :-) – klez Nov 6 at 16:49
@Ólafur Waage, thanks for the edit – klez Nov 6 at 16:50
you're welcome, i got a syntax error in my brain :P – Ólafur Waage Nov 6 at 17:32
vote up 3 vote down

No, there's no quick way to do this in PHP. The language does not offer the ability to alias functions without writing a wrapper function.

If you really really really needed this, you could write a PHP extension that would do this for you. However, to use the extension you'd need to compile your extension and configure PHP to us this extension, which means the portability of your application would be greatly reduced.

link|flag
1  
You wouldn't necessarily have to recompile php. You could compile the module and include it via php.ini instead. – Kevin Peno Nov 6 at 16:40
Very true Kevin, I've updated the post to reflect your comments – Alan Storm Nov 6 at 18:52
vote up 2 vote down

No, functions aren't 1st-class citizens so there's no wait = sleep like Javascript for example. You basically have to do what you put in your question:

function wait ($seconds) { sleep($seconds); }
link|flag
vote up 1 vote down

No, there's no quick way to do so - at least for anything before PHP v5.3, and it's not a particularly good idea to do so either. It simply complicates matters.

link|flag
vote up 1 vote down

nope. the way you wrote is the best way to do it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.