PHP 快速導覽 - 關鍵字




關鍵字 (keyword) 為具有語法功能的保留字 (reserved word) , PHP 的關鍵字如下列表

__halt_compiler()abstractandarray()as
breakcallablecasecatchclass
cloneconstcontinuedeclaredefault
die()doechoelseelseif
empty()enddeclareendforendforeachendif
endswitchendwhileeval()exit()extends
finalforforeachfunctionglobal
gotoifimplementsincludeinclude_once
instanceofinsteadofinterfaceisset()list()
namespaceneworprintprivate
protectedpublicrequirerequire_oncereturn
staticswitchthrowtraittry
unset()usevarwhilexor


依用途區分,可分為
  • 控制陳述
  • 範圍
  • 運算子
  • 內建函數
  • 函數、類別、介面等定義


控制陳述



關鍵字中用為控制陳述的有
asbreakcasecatchcontinue
declaredefaultdoelseelseif
enddeclareendforendforeachendifendswitch
endwhileforforeachgotoif
includeinclude_oncerequirerequire_oncereturn
switchthrowtrywhile


大體上可分為選擇 (selection) 、迴圈 (loop) 、例外處理 (exception handling) 等幾大類。


範圍



關鍵字中跟範圍相關的有
globalstatic


global 宣告變數為全域變數 (global variable) ,而 static 限制變數只能用為區域變數 (local variable) 。


運算子



關鍵字中用為運算子 (operator) 的有
andcloneinstanceofinsteadofnew
orxor


andorxor 為邏輯運算子,其他跟物件 (object) 有關。


內建函數



關鍵字中用為內建函數 (function) 的有
__halt_compiler()array()die()echoempty()
eval()exit()insset()list()print
unset()


函數、類別、介面等定義



關鍵字中跟函數、類別 (class) 、介面 (interface) 等定義相關的有
abstractclassconstextendsfinal
functionimplementsinterfacenamespaceprivate
protectedpublictraitsusevar


中英文術語對照
關鍵字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

沒有留言: