<?php
header('Content-Type: text/html; charset=utf-8');
include './assets/php/head.php';
//类型
/**
* Boolean 布尔类型
* Integer 整型
* Float 浮点型
* String 字符串
* Numeric strings
* Array 数组
* Iterable 可迭代对象
* Object 对象
* Resource 资源类型
* NULL
* Callback / Callable 类型
* 类型声明
* 类型转换的判别
* */
$bool = true;
$int = 1;
$float = 1.5;
$str = '阅谁问君诵,水落清香浮。';
$arr = array('aaa','bbb','ccc');
$null = null;
$obj = (object) '对象';
/**
* 允许转换的PHP数据类型有:
* (int)、(integer):转换成整型
* (float)、(double)、(real):转换成浮点型
* (string):转换成字符串
* (bool)、(boolean):转换成布尔类型
* (array):转换成数组
* (object):转换成对象
* */
echo <<<'标记'
$bool = true;
$int = 1;
$float = 1.5;
$str = '阅谁问君诵,水落清香浮。';
$arr = array('aaa','bbb','ccc');
$null = null;
$obj = (object) '对象';<br>
标记;
echo 'Boolean 布尔类型 结果:';
echo gettype($bool);
echo '<br>';
echo 'Integer 整型 结果:';
echo gettype($int);
echo '<br>';
echo 'Float 浮点型 结果:';
echo gettype($float);
echo '<br>';
echo 'String 字符串 结果:';
echo gettype($str);
echo '<br>';
echo 'Array 数组 结果:';
echo gettype($arr);
echo '<br>';
echo 'NULL 结果:';
echo gettype($null);
echo '<br>';
echo 'Object 对象 结果:';
echo gettype($obj);
echo '<br>';
?>
<?php include './assets/php/foot.php'; ?>
效果图: