gpt4 book ai didi

PHP - 为什么 "Index.php?action="不被识别为 "Index.php?"

转载 作者:搜寻专家 更新时间:2023-10-31 21:16:37 25 4
gpt4 key购买 nike

全部,

我正在用 PHP 构建一个前端 Controller 。在其中,我说:

if (isset($_GET['action'])){
$action=$_GET['action'];
} else {
$action='';
}

我用一个 switch 语句来控制根据 $action 的值调用哪个 Controller :

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();

这很好用。当我启动应用程序时,URL 是 http://.../Index.php? 并且 Controller_Welcome.php 被调用。如果我单击登录菜单条目,我会得到 http://.../Index.php?action=logon,并且会调用 Controller_Logon.php。如果我手动编辑 URL 以将 ...?action=... 设置为某个未知值,我会得到 Controller_Unknown.php,这是我的错误页面。所以一切都很好。

我不明白的是,如果我手动更改 url 以显示 http://.../Index.php?action=,我会看到错误页面而不是欢迎页面页。为什么 php 没有将以 ...?action= 结尾的 url 与 switch case $action=''; 相关联?

(没有逻辑用户案例会发生这种情况,但我仍然不明白......)

谢谢,

JDelage

PS:Var_dumping $action 返回 string(0) ""

最佳答案

只是一个注释,可能有助于提高可读性和进一步的开发工作。看来您的命名约定可以允许更多的“魔法”,让位于一种关于配置的约定,并避免代码重复:

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'

关于PHP - 为什么 "Index.php?action="不被识别为 "Index.php?",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7218979/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com