所有
我正在用PHP构建一个前端控制器。在其中,我说:
if (isset($_GET['action'])){
$action=$_GET['action'];
} else {
$action='';
}
我使用switch语句来控制根据$action
的值调用哪个控制器:
switch ($action){
case '':
require_once('Controller_Welcome.php');
$command=new controller_Welcome();
break;
case 'logon':
require_once('Controller_Logon.php');
$command=new controller_Logon();
break;
default:
require_once('Controller_Unknown.php');
$command=new controller_Unknown();
break;
}
$command->execute();
这很好用。当我启动应用时,网址为http://.../Index.php?
,并且会调用Controller_Welcome.php
。如果我单击登录菜单条目,我会得到http://.../Index.php?action=logon
,并且会调用Controller_Logon.php
。如果我手动编辑网址以将...?action=...
设置为某个未知值,我会收到Controller_Unknown.php
,这是我的错误页面。一切都很好。
我不明白的是,如果我手动更改网址以显示http://.../Index.php?action=
,我会收到错误页面而不是欢迎页面。为什么php不会将以...?action=
结尾的网址与切换案例$action='';
相关联?
(当发生这种情况时,没有逻辑用户的情况,但我仍然不理解......)
谢谢,
JDelage
PS:Var_dumping $action
返回string(0) ""
。
答案 0 :(得分:2)
只是一个可能有助于提高可读性和进一步开发工作的说明。您的命名约定似乎可以允许更多“ magic ”,让位于配置的约定,避免代码重复:
define('PATH_CONTROLLERS', 'path/to/controllers/');
$action = !empty($_GET['action'])
? $_GET['action']
: 'default';
switch($action){
case 'default':
case 'welcome':
case 'authenticate':
$controller_name = "controller_{$action}";
break;
default:
$controller_name = 'controller_404';
break;
}
require PATH_CONTROLLERS . "{$controller_name}.php";
$controller = new $controller_name();
$controller->execute();
假设:
// index.php
$action: 'default'
$controller_name: 'controller_default'
require(): 'path/to/controllers/controller_default.php'
// index.php?action=authenticate
$action: 'authenticate'
$controller_name: 'controller_authenticate'
require(): 'path/to/controllers/controller_authenticate.php'
// index.php?action=foobar
$action: 'foobar'
$controller_name: 'controller_404'
require(): 'path/to/controllers/controller_404.php'
答案 1 :(得分:1)
设置?action=
后,您将获得null
的{{1}}返回值。因此,在您的方案中,switch语句将使用默认情况。像所有人说的那样,你总是可以使用var_dump来查看返回值。
答案 2 :(得分:0)
我认为行动不是你想象的那样。这对我来说是预期的。
for url ending in 'action=' blank is echoed
for url ending in 'action=anything' anything is echoed
var_dump($_GET);
$action = $_GET['action'];
switch ($action){
case '':
echo "blank";
break;
default:
echo $action;
break;
}
答案 3 :(得分:0)
您描述的行为无法复制。我使用了以下内容,结果没有证明你所描述的内容:
<pre>
<?php
if (isset($_GET['action'])){
$action=$_GET['action'];
} else {
$action='';
}
var_dump($action);
echo "\n";
var_dump($_GET);
echo "\n";
switch ($action){
case '':
die('empty action</pre>');
case 'logon':
die('logon action</pre>');
default:
die('unknown action</pre>');
}
?>
致电:
http://host.com/test.php?action=
结果:
string(0) ""
array(1) {
["action"]=>
string(0) ""
}
empty action
答案 4 :(得分:-1)
您的其他代码也有一些内容 这个工作正常,并抛出Controller_Welcome空行动