我有很多php
文件。
要访问每个php
我正在使用的参数。
示例 : index.php?route=changepassword
, index.php?route=aboutus
, 等
我必须route.php
将参数链接到正确的文件
它更好地使用
If-Else statement
$route = $_GET['route'];
if ($route==changepassword) {
//statement
} else if ($route==aboutus) {
//statement
}
的使用switch-case
?
$route = $_GET['route'];
switch ($route) {
case "changepassword" :
//statement
break;
case "aboutus" :
//statement
break;
}
这只是2个文件,我有10多个文件,用什么更好?