What is the best way to handle strings?
echo $variable1 . 'this is a string with a ' . $variable2;
echo "$variable1 this is a string with a $variable2";
echo $variable1 . "this is a string with a " . $variable2;
echo <<<EOF
$variable1 this is a string with a $variable2
EOF;
echo $variable1 ?> this is a string with a <?php echo $variable2; ?>
Are there speed advantages in the different situations?