PHP的單引號和雙引號

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

效果以下:php

相關文章
相關標籤/搜索