One of the O'Reilly Perl books says that for efficiencies sake I should always use single quotes, when possible, over double quotes. Are there huge time savings in use of
echo 'hello world';
over
echo "hello world";
ประเด็นมันอยู่ตรงที่ single quote จะมองอักขระทุกตัวที่อยู่ภายในเป็น charector ไม่สนใจอักขรพิเศษ
<?php
$x = "Hello World";
echo 'Use single qoute to display: $x';
echo '<br>';
echo "Use double qoute to display: $x";
?>
::OUTPUT::
Use single qoute to display: $x
Use double qoute to display: Hello World