|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-10-06 10:10 UTC] johannes@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Sat Mar 28 13:00:01 2026 UTC |
Description: ------------ When using print_r for debugging it would be nice to see the name of the array. When the default maybe remains without name an additional parameter could say if the name of the array shall be displayed too (or a new function name print_rv with v for verbose?). now: Array ( [0] => K02 [1] => K03 [2] => K01 [3] => K04 [4] => K09 ) proposal: Array arrayname ( [0] => K02 [1] => K03 [2] => K01 [3] => K04 [4] => K09 )