基本輸出指令

概述及用途
    echo與print都是常用的資料呈現方式,非常單純的將字串或變數中的資料輸出到瀏覽器上
,當然也就可以輸出html語法,唯一的差別在echo可用逗號為區隔,輸出多個參數。不過將echo與小括號合用時,就只能輸出一個參數,否則會將小括號和逗號當作字串處理。另外也可以用來協助debug喔~
使用方式
  • echo 字串資料或變數名稱;
  • echo "字串資料或變數名稱";
  • echo ("字串資料或變數名稱");
  • print方法只需將上述echo部份改成print即可
範例
程式碼

顯示結果

<?php
//以echo方式輸出
$a =123;
$b =456;
echo "Hello World<br>";
echo ("Hello World<br>");
echo "變數a=",$a,"<br>","變數b=",$b,"<br>";
//使用heredoc方式輸出字串
echo <<<END
變數型態有教heredoc喔~<br>
表格也可以輸出
<table width="200" border="1">
<tr>
<td>test</td>
</tr>
</table>
END;

//以下用print作輸出
print "Hello World<br>";
print ("Hello World<br>");
print "變數a=$a<br>";
print "變數b=$b<br>";
//使用heredoc方式輸出字串
print <<<END
變數型態有教heredoc喔~<br>
表格也可以輸出
<table width="200" border="1">
<tr>
<td>test</td>
</tr>
</table>
END;
?>