Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:
requeat 动态资源
客户端<——->服务器端<——->php解释器<——->myaql数据库服务器
response
4种标量类型 整型 字符串 布尔型 浮点型
2种复合型 数组 对象
2种特殊类型 resource null
整型 $int = 32;
字符串 定义在单引号、双引号、定界符中 $password = "qnfjklg123";
布尔型 $boolean = true;
浮点型 $float = 12.12;
数组$user = ['id' => 1, 'name' => '李四', 'email' => '123456789@qq.com'];
resource
$handle = fopen('log.log','w')
var_dump($handle);
null$avatar = null;