PHP数据类型【var_dump函数可以返回函数值与数据类型】
string字符串 文本 字符序列 “helloword”;字符串要用定界符(“helloworld”)或(‘helloworld’)标记
Integer 整型 整数
Float 浮点型 带有小数点的数字或指数
boolean 布尔型 用于条件判断 true(正确)false(错误)
array 数组
object 对象
null (空值)
sublime PHP程序只有在保存为.php格式下才能有高亮显示
PHP常量(PHP常量可以在整个程序里运行)
define(常量名称,常量值,大小写敏感 设置true为大小写不敏感)
大小写敏感只有常量名称有关与常量值无关