|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-11-01 16:17 UTC] johannes@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 15 21:00:01 2025 UTC |
Description: ------------ Unexpectedly...about Scalar. Reproduce code: --------------- function a($a) { if($a['KEY']) { var_dump($a['KEY']); var_dump($a['KEY2']); $a['KEY2'] = 8; var_dump($a['KEY']); } } a('1'); Expected result: ---------------- nothing out put. Actual result: -------------- string(1) "1" string(1) "1" string(1) "8"