1.顺序结构
2.分支结构
2.1 if...else
1 <?php2 $today=date("w"); //获取今天星期几3 if($today==0){4 echo 'Sunday!';5 }else{6 echo 'Sorry!';7 }8 ?>
第五章_PHP流程控制