|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-01-20 11:13 UTC] derick@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 30 04:00:01 2025 UTC |
Description: ------------ Just look at the examples... Reproduce code: --------------- $var = "test"; if ($var["field"]) { echo "suprise!"; } or $var = "test"; if (isset($var["field"])) { echo "suprise!"; } Expected result: ---------------- No output Actual result: -------------- "suprise!" being printed as a result in both cases