Best way to understand the problem is example.
<?php
$a=’Hello’;
Echo “$aworld” // blank because it treat as variable
Echo “{$a}world” // Helloworld
?>
Best way to understand the problem is example.
<?php
$a=’Hello’;
Echo “$aworld” // blank because it treat as variable
Echo “{$a}world” // Helloworld
?>
© PHPInterviewQuestion.com 2009 - 2012
