php中if的4種寫法

weixin_34293059發表於2013-01-22

寫法1:

condition && yes; // 等同於“if (condition) yes;”

寫法2:

condition ? yes : no // 等同於“if (condition) {yes} else {no};”

寫法3:

if (condition) {
   yes;
}else{
   no;
}
寫法4:
if (condition) yes; // 等同於“if (condition) {yes};”

 

相關文章