HP语法标识符
PHP中语法标识符用于变量、常量、函数、类和对象的名称命名。标识符只能由字母、数字和下划线组成。并且,php语法标识符必须由字母或下划线开头。
在PHP中包含一些内置关键字,尽量皮面与这些内置关键字重名,以避免冲突。PHP常见的内置关键字如下:
and or xor break exception class const as
declare case die do continue else default endswitch
enddeclare echo endforeach elseif for endwhile endfor exit
endif switch foreach function global extends interface implements
use return if protected abstract extends var new
throw cfunction clone final static try private this
public while
以上就是PHP内置关键字,不需要特殊记忆,因为在今后为经常使用到这些关键字。
PHP中语法标识符用于变量、常量、函数、类和对象的名称命名。标识符只能由字母、数字和下划线组成。并且,php语法标识符必须由字母或下划线开头。
在PHP中包含一些内置关键字,尽量皮面与这些内置关键字重名,以避免冲突。PHP常见的内置关键字如下:
and or xor break exception class const as
declare case die do continue else default endswitch
enddeclare echo endforeach elseif for endwhile endfor exit
endif switch foreach function global extends interface implements
use return if protected abstract extends var new
throw cfunction clone final static try private this
public while
以上就是PHP内置关键字,不需要特殊记忆,因为在今后为经常使用到这些关键字。