Home  >  Article  >  Backend Development  >  笨鸟学php(三) 运算符与表达式

笨鸟学php(三) 运算符与表达式

WBOY
WBOYOriginal
2016-06-23 13:53:19808browse

一、算术运算符    +   -  *  /  %  ++  --

<?php $a = 100;	$a++;       // $a=$a+1;  先用变量再自增1	++$a;       // $a=$a+1;  先用自增1再用变量	$a--;       // $a=$a-1;  先用变量再自减1	--$a;       // $a=$a-1;  先用自减1再用变量	echo "a = ".$a."<br>";    // 100		$b = $a % 3.3; // % 会把两边的数转为整数后再进行整除	echo "b = ".$b;?>

二、字符串运算符

<?php $name = "tom";	$age = 27;	$height = 1.75;		echo "我的名字是:{$name} 我的年龄是:{$age} 我的身高是:{$height}米<br>";	echo '我的名字是:' . $name . ' 我的年龄是:' . $age . ' 我的身高是:' . $height . '米' . '<br>';	echo '我的名字是:' , $name , ' 我的年龄是:' , $age , ' 我的身高是:' , $height , '米' , '<br>';?>

三、赋值运算符    =   += -= *= /= %=  .=

<?php $a = 10;	$a += 10;     // $a = $a + 10;	$a -= 10;     // $a = $a - 10;	$a *= 10;     // $a = $a * 10;	$a /= 10;     // $a = $a / 10;	$a %= 10;     // $a = $a % 10;	$a .= "abc";  // $a = $a . "abc";?>

四、比较运算符    >  = !==

<?php /**		===  比较时不仅要求内容相同,也要求类型相同    	!==  比较时不仅要求内容不相同,也要求类型不相同    **/	$a = 100;	if ($a === "100") {		echo "111111111111111";	} else {		echo "000000000000000";	}?>

五、逻辑运算符    && 或and  ||或 or  ! 或not  


六、位运算符      &   | ^ ~   > >>>


七、其他运算符   ? :  ``  @  => -> ::  & $


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn