笨鳥學php(三) 運算子與運算式

來源:互聯網
上載者:User

標籤:style   blog   strong   2014   re   c   

一、算術運算子    +   -  *  /  %  ++  --

<?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  


六、位元運算符      &   | ^ ~   <<  >> >>>


七、其他運算子   ? :  ``  @  => -> ::  & $


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.