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