更新时间:2020-01-11 来源:黑马程序员 浏览量:
关键字是编程语言里事先定义好并赋予特殊含义的单词,也称作保留字。和其他语言一样,PHP中保留了许多关键字,例如class、public等,下面列举的是PHP7中所有的关键字。
_halt_compiler() | abstract |
and | array() |
as | break |
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 |
if | implements |
include | include_once |
instanceof | interface |
isset() | list() |
new | or |
private | |
prorected | public |
require | require_once |
return | static |
switch | throw |
try | unset() |
use | var |
while | xor |
_CLASS_ | _FILE_ |
_FUNCTION_ | _LINE_ |
_METHOD_ |
PHP5.3开始使用的关键字
goto
namespace
_DIR_
_NAMESPACE_
PHP5.4开始使用的关键字
callable
insteadof
trait
_TRAIT_
PHP5.5开始使用的关键字
finally
yield
上述列举的关键字中,每个关键字都有特殊的作用。例如,class关键字用于定义一个类,const关键字用于定义常量,function关键字用于定义一个函数。推荐了解黑马程序员PHP+H5全栈工程师培训课程。