for($num = 2;$num <=10;$a++){
 if($num == 4){
    //continue; 跳过这个 直接下一个
    break; //中断打印 后面的都不打印
 }
    }

相关文章: