PHP有7种数据类型
- String(字符串)
- Integer(整型)
- Float(浮点型)
- Boolean(布尔型)
- Array(数组)
- Object(对象)
- NULL(空值)
实际举例(部分):
$string = "字符型";
$int = 100;
$float = 1.1;
$bool = true;
$arr = array("e1", "e2", 2);
PHP有7种数据类型
实际举例(部分):
$string = "字符型";
$int = 100;
$float = 1.1;
$bool = true;
$arr = array("e1", "e2", 2);
本文标题:PHP自学计划-数据类型-05
本文链接:https://www.haomeiwen.com/subject/ovmocqtx.html
网友评论