|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-03-24 18:29 UTC] bjori@php.net
[2007-03-25 01:35 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 22 07:00:01 2025 UTC |
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 ...