代碼塊是被分組為一個單元的語句的列表。
在PHP中,我們使用{}來包裝代碼塊并通知編譯器說“這是一組言論"。
下面的代碼組將兩個打印語句結合在一起并輸出A和B,如果天空的顏色是藍色的。
<?PHP $sky_color = "blue"; if($sky_color == "blue") { print("A \n"); print("B \n"); } print("Here I am from m.hgci.cn."); ?>
上面的代碼生成以下結果。
下面的代碼顯示了如何創(chuàng)建三個簡單語句。
<?php //an expression statement 2 + 3; //another expression statement print("PHP!"); //a control statement if(3 > 2) { //an assignment statement $a = 3; } ?>
上面的代碼生成以下結果。
在編程中,注釋是我們的代碼的描述。
在PHP中有三種方法來創(chuàng)建注釋:
//
和#
表示“忽略此行的其余部分,
<?php print "This is printed\n"; // print "This is not printed\n"; # print "This is not printed\n"; print "This is printed\n"; ?>
上面的代碼生成以下結果。
/*
means "Ignore everything until you see */
."
<?php print "This is printed\n"; /* print "This is not printed\n"; print "This is not printed\n"; */ ?>
上面的代碼生成以下結果。
更多建議: