Thread: Call structure?
View Single Post
  #1  
Old 12-30-2007, 12:50 PM
projectigi projectigi is offline
Registered User
Join Date: Jan 2004
Posts: 403
projectigi is an unknown quantity at this point
Call structure?

Hi,

is there any way to get the call structure without function profiling?
like

PHP Code:
function onCreated()
  {
  
test1();
  }

function 
test1()
  {
  
test2();
  }

function 
test2()
  {
  } 
would be onCreated=>test1=>test2
__________________

Last edited by projectigi; 12-31-2007 at 10:44 AM..
Reply With Quote