Welcome Guest, Not a member yet? Register   Sign In
debug_backtrace .. and memory consumption
#1

[eluser]Ramania[/eluser]
hello people,

i was wondering if anyone knows how much overhead could i cause my code once i call debug_backtrace() each time a function is called, i would like to know the name of the function called for some reason in my code, and i found no alternative than called debug_backgrace() and getting the function name from the array e.g.

Code:
$functionName = debug_backtrace();
        echo $functionName['0']['function'];

i'm thinking about using the profiler later on, but for now i wanted to get a professional opinion about the matter, and if there is a better alternative that i could use.

thank you very much,

Rami
#2

[eluser]WanWizard[/eluser]
Check out PHP Magic Constants...
#3

[eluser]Ramania[/eluser]
yes thank you, i forgot to mention that after half an hour of posting this yesterday i found out __FUNCTION__ and __CLASS__ .. those two constants gave me what i wanted Big Grin




Theme © iAndrew 2016 - Forum software by © MyBB