關鍵字 (keyword) 為具有語法功能的保留字 (reserved word) , PHP 的關鍵字如下列表
__halt_compiler() | abstract | and | array() | as |
break | callable | case | catch | class |
clone | const | continue | declare | default |
die() | do | echo | else | elseif |
empty() | enddeclare | endfor | endforeach | endif |
endswitch | endwhile | eval() | exit() | extends |
final | for | foreach | function | global |
goto | if | implements | include | include_once |
instanceof | insteadof | interface | isset() | list() |
namespace | new | or | private | |
protected | public | require | require_once | return |
static | switch | throw | trait | try |
unset() | use | var | while | xor |
依用途區分,可分為
- 控制陳述
- 範圍
- 運算子
- 內建函數
- 函數、類別、介面等定義
控制陳述
關鍵字中用為控制陳述的有
as | break | case | catch | continue |
declare | default | do | else | elseif |
enddeclare | endfor | endforeach | endif | endswitch |
endwhile | for | foreach | goto | if |
include | include_once | require | require_once | return |
switch | throw | try | while |
大體上可分為選擇 (selection) 、迴圈 (loop) 、例外處理 (exception handling) 等幾大類。
範圍
關鍵字中跟範圍相關的有
global | static |
global 宣告變數為全域變數 (global variable) ,而 static 限制變數只能用為區域變數 (local variable) 。
運算子
關鍵字中用為運算子 (operator) 的有
and | clone | instanceof | insteadof | new |
or | xor |
and 、 or 、 xor 為邏輯運算子,其他跟物件 (object) 有關。
內建函數
關鍵字中用為內建函數 (function) 的有
__halt_compiler() | array() | die() | echo | empty() |
eval() | exit() | insset() | list() | |
unset() |
函數、類別、介面等定義
關鍵字中跟函數、類別 (class) 、介面 (interface) 等定義相關的有
abstract | class | const | extends | final |
function | implements | interface | namespace | private |
protected | public | traits | use | var |
中英文術語對照 | |
---|---|
關鍵字 | keyword |
保留字 | reserved word |
選擇 | selection |
迴圈 | loop |
例外處理 | exception handling |
全域變數 | global variable |
區域變數 | local variable |
運算子 | operator |
物件 | object |
函數 | function |
類別 | class |
介面 | interface |
您可以繼續參考
基本概念
標記
相關目錄
回 PHP 快速導覽
回 PHP 教材
回首頁
參考資料
http://php.net/manual/en/reserved.keywords.php
沒有留言:
張貼留言