|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-06-12 14:28 UTC] bjori@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 01:00:01 2025 UTC |
Description: ------------ Why is print? Array ( [a] => baa ) Reproduce code: --------------- <?php $a['a'] = 'aaa'; $a['a']['a'] = 'bbb'; print_r($a); ?> Expected result: ---------------- Array ( [a] => Array( [a] => bbb ) ) Actual result: -------------- Array ( [a] => baa )