單引號內部的變量不會執行,雙引號會執行。
1 <?php 2 $name = 'hello php'; 3 echo "<h1>$name</h1>"; 4 echo '<h1>$name</h1>'; 5 ?>
效果以下:php