|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-01-11 06:03 UTC] philip@php.net
[2002-01-16 12:53 UTC] andrei@php.net
[2002-01-16 14:44 UTC] philip@php.net
[2002-06-29 13:03 UTC] steph dot fox at btinternet dot com
[2002-07-01 17:58 UTC] jan@php.net
[2020-02-07 06:12 UTC] phpdocbot@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 07:00:02 2025 UTC |
The behaviour of the following code doens't seem to be documented: <? $foo = array(27 => 'Ene'); $bar = array(-1 => 'Mene'); $baz = $foo + $bar; var_dump($baz); ?> array(2) { [27]=> string(3) "Ene" [-1]=> string(4) "Mene" }