首页 > 代码库 > php数据类型
php数据类型
一般PHP的数据类型不是由程序员定义 PHP会根据它的值自动匹配类型
四种标量类型:
- boolean (布尔型)
- integer (整型)
- float (浮点型, 也称作 double)
- string (字符串)
两种复合类型:
- array (数组)
- object (对象)
最后是两种特殊类型:
- resource (资源)
- NULL (NULL)
var_dump(): 查看某个表达式的值和类型 。
gettype() 如果只是想得到一个易读懂的类型的表达方式用于调试,用
is_type() 判断类型
<?php $a_bool = TRUE; // a boolean $a_str = "foo"; // a string $a_str2 = ‘foo‘; // a string $an_int = 12; // an integer echo gettype($a_bool); // prints out: boolean echo gettype($a_str); // prints out: string // If this is an integer, increment it by four if (is_int($an_int)) { $an_int += 4; } // If $bool is a string, print it out // (does not print out anything) if (is_string($a_bool)) { echo "String: $a_bool"; } ?>
查看某个类型
php数据类型
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。