Blogger Information
Blog 53
fans 3
comment 0
visits 55275
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
11月12日作业PHP函数--PHP培训班线上第九期
邯郸易住宋至刚
Original
596 people have browsed it

手抄代码如下:

一、判断函数

函数 描述
is_bool() 判断是否是布尔型
is_int() 判断是否是整型
is_float() 判断是否是浮点型
is_string() 判断是否是字符串
is_null() 判断是否是为空
isset() 判断变量是否有值
empty() 判断变量是否为空
unset() 释放变量

二、运算符

运算符 描述
+相加
-相减
*相乘
/相除
%取余
++加加
—减减
.连接、用在字符串

三、赋值运算符

运算符 描述
= 赋值
+= 先加,后赋值
-= 先减,后赋值
*= 先乘,后赋值
/= 先除,后赋值
%= 先取余,后赋值
.= 先连接,后赋值

四、比较运算符

运算符 描述

大于
= 大于等于
< 小于
<= 小于等于
== 等于
!= 不等于
=== 恒等于
!== 恒不等

五、逻辑运算符

运算符 描述
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