PHP重头开始 数据类型

PHP 支持 8 种原始数据类型。(变量的类型  是由 PHP 根据该变量使用的上下文在运行时决定的)

四种标量类型:boolean(布尔型)    integer(整型)   float(浮点型,也称作double)   string(字符串)    

两种复合类型:array(数组)    object(对象)    

最后是两种特殊类型:resource(资源)    NULL(无类型)    

伪类型:mixed(混合类型)    number(数字类型)    callback(回调类型)    

伪变量: $...


获取变量类型 gettype(),判断类型 is_[type]

转换 settype() 或 者强制转换:

  • (int), (integer) - 转换为整形 integer

  • (bool), (boolean) - 转换为布尔类型 boolean

  • (float), (double), (real) - 转换为浮点型 float

  • (string) - 转换为字符串 string

  • (array) - 转换为数组 array

  • (object) - 转换为对象 object

  • (unset) - 转换为 NULL (PHP 5)




你可能感兴趣的:(PHP重头开始 数据类型)