|
Mantis - Quercus
|
|||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 1154 | minor | always | 05-26-06 19:32 | 09-05-08 14:07 | |
|
|
|||||
| Reporter: | koreth | Platform: | |||
| Assigned To: | ferg | OS: | |||
| Priority: | normal | OS Version: | |||
| Status: | closed | Product Version: | 3.0.20 | ||
| Product Build: | Resolution: | fixed | |||
| Projection: | none | ||||
| ETA: | none | Fixed in Version: | 3.2.1 | ||
|
|
|||||
| Summary: | 0001154: debug_backtrace() doesn't include function arguments | ||||
| Description: |
PHP: <?php function testfunc($x) { var_dump(debug_backtrace()); } testfunc("test"); ?> Zend PHP outputs the following (reformatted for easier reading): array(1) { [0]=> array(4) { ["file"]=> string(59) "/Users/sgrimm/resin/resin/webapps/test/test.php" ["line"]=> int(6) ["function"]=> string(8) "testfunc" ["args"]=> array(1) { [0]=> &string(4) "test" } } } Quercus outputs the same thing but the "args" array is empty. array(1) { [0]=> array(4) { ["file"]=> string(47) "/Users/sgrimm/resin/resin/webapps/test/test.php" ["line"]=> int(6) ["function"]=> string(8) "testfunc" ["args"]=> array(0) { } } } |
||||
| Steps To Reproduce: | |||||
| Additional Information: | 060526 snapshot | ||||
| Relationships | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||