ID:               40910
 Updated by:       [EMAIL PROTECTED]
 Reported By:      meyermagic at gmail dot com
 Status:           Bogus
 Bug Type:         Arrays related
 Operating System: MS Windows XP Pro, SP2, 5.1.2600
 PHP Version:      5CVS-2007-03-24 (snap)
 New Comment:

This is an Xdebug feature, use the xdebug.var_display_max_depth setting
to something higher than 4.


Previous Comments:
------------------------------------------------------------------------

[2007-03-24 18:29:51] [EMAIL PROTECTED]

Do not file bugs when you have Zend extensions (zend_extension=)
loaded. Examples are Zend Optimizer, Zend Debugger, Turck MM Cache,
APC, Xdebug and ionCube loader.  These extensions often modify engine
behavior which is not related to PHP itself.



------------------------------------------------------------------------

[2007-03-24 18:15:55] meyermagic at gmail dot com

Description:
------------
Configure Command       cscript /nologo configure.js
"--enable-snapshot-build" "--with-gd=shared"

error_reporting  =  E_ALL|E_STRICT
log_errors = On
register_long_arrays = Off
register_argc_argv = Off
magic_quotes_gpc = Off
extension_dir = "C:\PHP\ext"

extension=php_imagick.dll
extension=php_xdebug.dll

date.timezone =America/Los_Angeles

var_dump seems to cut off array output on the fourth internal array.

Reproduce code:
---------------
<?php
       var_dump(array(array(array(array(array(1))))));
?>

Expected result:
----------------
array
 0 =>
   array
     0 =>
       array
         0 =>
           array
             0 =>
               array
                 0 => int 1

Actual result:
--------------
array
 0 =>
   array
     0 =>
       array
         0 =>
           array
             ...


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=40910&edit=1

Reply via email to