Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Caller function in PHP 5?

Like this:

function foo(){
  do_something();
}

function do_something(){
  // How can I find out if this function was called from "foo" ?
}

Is this possible in PHP?

(Note that in my case the do_something() function is actually a class method)

share|improve this question
1  
I'll just throw this out, know it isn't what you are looking for, but why not just pass it in as an argument? – mazzzzz Jun 28 '11 at 5:19
it's kind of complicated... But in essence I don't have any control over the foo() function. That function only accepts a callback as argument – Alex Jun 28 '11 at 5:20

marked as duplicate by Rowland Shaw, The Scrum Meister, sarnold, Tim Post Jun 28 '11 at 11:23

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 4 down vote accepted

You want to use debug_backtrace() (manpage)

share|improve this answer
1  
its name sounds scary. Is it OK use that outside of a dev environment? – Alex Jun 28 '11 at 5:24
If you really have to use it, you can use it. But don't try to change the behaviour of the function depending on the caller function but on the arguments (i know there are situations where it's necessary to get the caller function) – levu Jun 28 '11 at 5:26

You can use debug_backtrace, which will let you access the call stack.

function do_something(){
   $trace = debug_backtrace();
   if($trace[1]['function'] == 'foo'){
      // called from foo
   }
}
share|improve this answer

Have a look at Caller function in PHP 5?

share|improve this answer

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