<form action="" method="get"> <label for="score">请输入成绩:</label><input type="number" id="score" name="score" max="100" value=""> <button>提交</button> </form>
$init = $_GET['score']; switch($init){ case $init >=90 : echo '<p>厉害了,我的学霸!</p>'; break; case $init >=80 : echo '<p>再接再厉,努力吧!</p>'; break; case $init >=70 : echo '<p>差太多啦!得加油赶上了!!</p>'; break; case $init >=60 : echo '<p>建议你留级吧!!</p>'; break; default: break; }
Obviously no parameters have been passed to the form yet, so how come the first case is output? At this time, the $init variable is empty. How can it be judged successful? ? What's going on? ?
If you submit without inputting anything, the submitted value will be empty. Empty does not meet any switch conditions, so it will start execution from the first CASE and will not stop until it encounters break