"/>
<?php$a = '12345';print "qwe{$a}rty";?>
<?php
$a = '12345';
print "qwe{$a}rty";
?>
qwe12345rty
qwe{$a}rty
error
no output
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option A
Explanation :
{$}dereferences the variable within.
Be The First To Comment