指令分割方式與C或者perl類似---每個語句有分號隔開。
結束標記(?>)同樣隱含語句的結束,因此下面的代碼是等價的
<?php
echo "This is a text";
?>
<?php echo "This is a test"?>
注釋:
php支持'c',c++和unix shell風格的注釋;例如:
<?php
echo "This is a test";//This is a one-line c++ style comment
/*This is a multi line comment
yet another line of comment*/
echo "This is yet another test";
echo "One Final Test";#This is shell-style style comment
?>
"單行"注釋僅僅注釋到行末或者當前的代碼塊,視乎哪個首先出現。
<h2>This is an <?php # echo "simple"?>example.</h2>
<p>The header above will say 'This is an example'.
小心不要嵌套'C'風格的注釋,當注釋大量的代碼時,可能犯該錯誤。
<?php
/*
echo "This is a test";/*This comment will cause a problem*/
*/
?>
單行注釋僅僅注釋到行末或者當前的php代碼塊
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。