|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
告诉你了一个方式,但是缺少努力这一环节,那也是白搭。
php operatorsthis section lists the different operators used in php.
arithmetic operators
operatordescriptionexampleresult+additionx=2
x+24-subtractionx=2
5-x3*multiplicationx=4
x*520/division15/5
5/23
2.5%modulus (division remainder)5%2
10%8
10%21
2
0++incrementx=5
x++x=6--decrementx=5
x--x=4assignment operators
operatorexampleis the same as=x=yx=y+=x+=yx=x+y-=x-=yx=x-y*=x*=yx=x*y/=x/=yx=x/y.=x.=yx=x.y%=x%=yx=x%ycomparison operators
operatordescriptionexample==is equal to5==8 returns false!=is not equal5!=8 returns true>is greater than5>8 returns false<is less than5<8 returns true>=is greater than or equal to5>=8 returns false<=is less than or equal to5<=8 returns truelogical operators
operatordescriptionexample&&andx=6
y=3 (x < 10 && y > 1) returns true
orx=6
y=3 (x==5 y==5) returns false
!notx=6
y=3 !(x==y) returns true
本文链接http://www.cxybl.com/html/wlbc/Php/20120531/27128.html不断巩固,摸透大部分PHP常用函数,并可理解OOP,MYSQL优化,以及模板 |
|