Blogger Information
Blog 18
fans 1
comment 0
visits 13024
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
判断函数、运算符-九期线上班
皮皮的博客
Original
660 people have browsed it

一、判断函数

PHP自带的一些功能方法叫做函数;PHP拥有1000多个内建的函数。

is_bool() 判断是否为布尔型;

is_int() 判断是否为整型;

is_float() 判断是否为浮点型;

is_string() 判断是否为字符串;

is_null() 判断变量是否为空;

isset() 判断变量是否有值;

empty() 判断变量是否为空;

unset() 释放变量。

1573996566499046.jpg

二、运算符

+ 相加

- 相减

* 相乘

/ 相除

% 取余

++ 加加

-- 减减

. 连接字符串


三、赋值运算符

= 赋值

+= 先加,后赋值

-= 先减,后赋值

*= 先乘,后赋值

/= 先除,后赋值

%= 先取余,后赋值

.= 先连接,后赋值


四、比较运算符

> 大于

>= 大于等于

< 小于

<= 小于等于

== 等于

!= 不等于

=== 恒等于

!== 恒不等


五、逻辑运算符

and 和 &&  与  (两边都是真,它才是真。)

or 和 ||  或  (两边有一个是真,它就是真。)

xor  异或  (两边都是真,返回假;两边都是假,也返回假;两边一真一假,返回真。)

!  非  (如果是真,返回假;如果是假,返回真。)

1573998934453316.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