From:             programmando at gmail dot com
Operating system: Ubuntu Dapper Drake
PHP version:      5.1.6
PHP Bug Type:     Class/Object related
Bug description:  debug_backtrace() and Zend Optimizer problem

Description:
------------
After a debug_backtrace() the result array doesn't have 'object' entry if
Zend Optimizer (3.0.1 in this case) is enabled. 
Turn off Zend Optimizer and 'object' appear.

(I've asked on Zend Optimizer forum also, I don't know if a php related
problem)

Reproduce code:
---------------
$traces = debug_backtrace();
print_r($traces);

Expected result:
----------------
    [1] => Array
        (
            [file] =>
/var/www/symfony/lib/controller/sfFrontWebController.class.php
            [line] => 48
            [function] => forward
            [class] => sfController
            [type] => ->
            [args] => Array
                (
                    [0] => story
                    [1] => index
                )

        )

Actual result:
--------------
    [1] => Array
        (
            [file] =>
/var/www/symfony/lib/controller/sfFrontWebController.class.php
            [line] => 48
            [function] => forward
            [class] => sfController
            [type] => ->
            [object] => !!!!!!!!!!!!!!!!!!!
            [args] => Array
                (
                    [0] => story
                    [1] => index
                )

        )

-- 
Edit bug report at http://bugs.php.net/?id=39253&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=39253&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=39253&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=39253&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=39253&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=39253&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=39253&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=39253&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=39253&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=39253&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=39253&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=39253&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=39253&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=39253&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=39253&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=39253&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=39253&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=39253&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=39253&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=39253&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=39253&r=mysqlcfg

Reply via email to