Mantis - Quercus
Viewing Issue Advanced Details
1153 minor always 05-26-06 19:28 09-19-06 08:05
koreth  
ferg  
normal  
closed 3.0.20  
fixed  
none    
none 3.1.0  
0001153: debug_backtrace() only works in interpreted mode
PHP:

<?php
function f1() {
        f2();
}
function f2() {
        var_dump(debug_backtrace());
}

f1();
?>

In interpreted mode, this works fine; a stack trace is output. Once the file is compiled to Java, an empty array is returned by debug_backtrace().
060526 snapshot

There are no notes attached to this issue.