|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-09-25 16:47 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 16:00:01 2025 UTC |
$x="hello"; echo "1={$x} 2=\{$x}" -> 1=hello 2={hello} It "should" have produced -> 1={hello} 2=\{hello} No doubt this is related to evaluation of variable variables but the behavior has certainly changed since PHP3 and I think it deserves to be called a bug?