vote up 4 vote down star

Is it possible?

function test()
{
  echo "function name is test";
}
flag

40% accept rate
1  
Just out of curiosity, when is there a need for this? Is it possible to create functions that you don't know the name of? – DisgruntledGoat Jun 17 at 11:33
1  
One possible use would be logging your execution. If you're writing "I had an error in " . FUNCTION to a logfile or something. This way, if the function name is changed you don't have to worry about the person remembering to change the log message. – Brian Ramsay Jun 17 at 11:48

4 Answers

vote up 10 vote down check

you want the constant:

__FUNCTION__

http://www.php.net/manual/en/language.constants.predefined.php

link|flag
vote up 1 vote down

If you are using PHP5 you can try this:

function a()
{
  $trace = debug_backtrace();
  echo "Function name is " . $trace[0]["function"];
}
link|flag
vote up 2 vote down

what i know

you can get all of the function you create

$arr = get_defined_functions();

will print [user] => Array ( [0] => functionname )

link|flag
vote up 7 vote down

You can use the magic constants __METHOD__ or __FUNCTION__ depending on if it's a method or a function... =)

link|flag
2  
METHOD includes the class name, FUNCTION is just that. The latter is equally available in the method of a class. – Alister Bulman Jun 17 at 11:16
That's true. But it's often useful to get MyClass::methodName instead of methodName. – Machine Jun 17 at 20:05

Your Answer

Get an OpenID
or

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