PHP語句

2018-02-22 16:40 更新

PHP教程 - PHP語句

PHP代碼塊

代碼塊是被分組為一個單元的語句的列表。

句法

在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.");

?>

上面的代碼生成以下結果。



實施例2

下面的代碼顯示了如何創(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評論

在編程中,注釋是我們的代碼的描述。

標記注釋的語法

在PHP中有三種方法來創(chuàng)建注釋:

  • //
  • /* */, and
  • #.

筆記2

// 表示“忽略此行的其余部分,

     <?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"; */
      ?>

上面的代碼生成以下結果。

以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號