What is the difference between "${varname}"
and "{$varname}"
in PHP's string interpolation? (notice the position of the $
)
The php docs say that you can use either, but doesn't clearly explain what the difference between these two methods is. Is there actually a difference?