<?php switch (true) :
case $_GET['change']:
echo 'hello';
break;
default:
echo 'bye';
break; ?>
它給我這個錯誤:
Parse error: syntax error, unexpected end of file in D:\xampp\htdocs\profile.php on line 47.
這是我的代碼的結束。 我忘了什麼,因爲如果我評論這段代碼,它效果很好。
瞭解如何使用它http://php.net/manual/en/control-structures.switch。php – jitendrapurohit
你不能把$ _GET ['change']作爲案例 – Naincy
同意@jitendrapurohit – Naincy