Probably a trivial question, but in which order does Exception::getTrace return calls? Most recent first or last? I'd like to know before I implement my error handler.

BenTheDesigner

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Why don't you test it yourself?

function NestedFunc() {
    throw new Exception("test");
}

function FunctionAbc() {
    NestedFunc();
}

try {
    FunctionAbc();
} catch (Exception $e) {
    var_dump($e->getTrace());
}
link|improve this answer
Crozin, I would have if I was at my PC. Question posted while brainstorming on the train. Thanks – BenTheDesigner Mar 29 '10 at 12:32
feedback

Your Answer

 
or
required, but never shown

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