Blogger Information
Blog 13
fans 0
comment 0
visits 7960
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php第三节课 线上第九期作业
大葫芦
Original
643 people have browsed it

一. 数据类型

boolean:布尔型 返回值是 true 或 false
string :字符串 字符串必须用引号
integer :整型 没有小数点的
float: 浮点型有小数点的
null:控制型 不限定数据类型的空值
array:数组
object:对象

二、函数,(函数就是PHP中内置的功能)

is_bool() :判断是不是布尔型;
is_string() :判断是不是字符串;
is_float() :判断是不是浮点类型;
is_int() :判断是不是整型;
is_null(变量) :判断是不是空或者是未定义的
is_set(变量) 判断变量是不是null或未定义
empty(变量) :判断变量是否为null、未定义、’’、0,以上4种任意条件满足都为真
unset(变量) :释放变量

三、运算符
+(加)-(减)*(乘)/(除) %(取余) ++(加加相当于加1) —(减减相当于减一) .(链接符号)

四、赋值运算符

=(赋值)
+=(先加再赋值)
-=(先减再赋值)
*=(先乘再赋值)
/=(先除再赋值)
%=(先取余再赋值)
.=(先链接再赋值)

五、比较运算符

大于 >=大于等于 <小于 <=小于等于 == 等于 ===恒等 恒等的意思是 不但值相同 类型也必须相同 !==恒不等

六、逻辑运算符

and 和 && 与 相当于或者的意思

or 和 || 或 相当于并且的意思

xor 异或 只有一个是真 返回的才是真 其余都是假

!非 取反的意思

七、手写


总结一下:感觉这些都是需要死记硬背的,所以必须背过。

Correcting teacher:查无此人查无此人

Correction status:qualified

Teacher's comments:完成的不错。
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post