返回列表 發帖

IF 與 Switch 特殊寫法

<html>
    <head>
        <title>IF 與 Switch 特殊寫法</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    </head>
    <body>
    <?php
        $score = '75';
         
        if($score >= 60){
            echo '及格';
        }else{
            echo '不及格';
        }
         
        if($score >= 60):
            echo '及格';
        else:
            echo '不及格';
        endif;
    ?>     
    </body>
</html>
May

返回列表