Blogger Information
Blog 12
fans 0
comment 0
visits 11908
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP判断函数与运算符----PHP九期线上班
張涛的博客
Original
787 people have browsed it

一、判断函数

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

二、php运算符    

运算符描述
+相加
-相减
*相乘
/相除
%取余
++加加。 b = a++; ====>b=a;a++;    b=++a;======>a++;b=a;
--减减。
.连接,用在字符串。一个变量连接一个整型,必须在整型的前面加空格

三、赋值运算符

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


四、比较运算符    

运算符描述
>大于
<小于
>=大于等于
<=小于等于
==等于
!=不等于
===恒等于。恒等于区别于等于,不只比较数值是否相同,还比较类型等
!==恒不等

五、逻辑运算符

运算符描述
and 和 &&与。有假即为假
or 和 ||或。有真即为真
xor异或。相同即为假
非。取反


1.jpg

2.jpg

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