1、運算符:php
一、算數運算符:+、-、*、/、%、++、--web
二、字符串運算符:this
<?php $str="string php100"; echo $str."web"; //輸出結果string php100web echo $str.123; //輸出結果string php100123 $str2="web"; echo $str.$str2; //輸出結果string php100web ?>
三、賦值運算符:①=、②+=、③-=、④*=、⑤/=、⑥%=、⑦.=blog
四、位運算符:&、|、~、^、<<、>>開發
五、比較運算符:>、<、>=、<=、==、!=、<>、===、!==字符串
六、邏輯運算符:AND、OR、XOR、&&、||、!string
2、流程控制:it
一、if(){}、if(){}else{}、if(){}elseif(){}else{}io
二、php的case條件能夠是字符串類型,做爲iOS開發者的小編來講,這樣挺隨意。class
switch(condition) { case "A": { echo "this is case A"; break; } default: { echo "this is default"; break; } }