PHP分层MVC设计从头开始?

jtw3ybtb  于 2023-02-15  发布在  PHP
关注(0)|答案(1)|浏览(97)
    • 背景**

在过去的几个月里,我一直在学习各种教程,目前正在尝试理解PHP框架。
我做这件事的方法之一是尝试从头开始设计我自己的非常简单的MVC框架。
我正在尝试重构一个应用程序(我已经用意大利面条式过程PHP构建了这个应用程序),这个应用程序有一个供教师使用的前端和一个供管理员使用的后端。
我希望将关注点分开,并提供如下URL

http://example.com/{module}/{controller}/{method}/{param-1}/{param-2}

到目前为止,我拼凑起来的MVC框架并不处理"模块"的路由(如果这不是正确的术语,我很抱歉),只处理控制器/方法/参数。
所以我把public_html从应用逻辑中分离出来,并在/app/文件夹中指定了两个文件夹,默认的"learn module"和"admin module",这样目录树看起来就像这样:

显然这个设计模式是一个"H" MVC?

    • 我的解决方案**

我基本上是使用is_dir();函数来检查是否存在"module"目录(例如"admin"),然后取消设置第一个URL数组元素$url[0]并将数组重新索引为0 ......然后我根据URL更改控制器路径......代码应该更清晰......

<?php

class App
{

    protected $_module = 'learn'; // default module --> learn
    protected $_controller = 'home'; // default controller --> home
    protected $_method = 'index'; // default method --> index
    protected $_params = []; // default parameters --> empty array

    public function __construct() {

        $url = $this->parseUrl(); // returns the url array

        // Checks if $url[0] is a module else it is a controller
        if (!empty($url) && is_dir('../app/' . $url[0])) {

            $this->_module = $url[0]; // if it is a model then assign it
            unset($url[0]);

            if (!empty($url[1]) && file_exists('../app/' . $this->_module . '/controllers/' . $url[1] . '.php')) {

                $this->_controller = $url[1]; // if $url[1] is also set, it must be a controller
                unset($url[1]);
                $url = array_values($url); // reset the array to zero, we are left with {method}{param}{etc..}

            }

        // if $url[0] is not a module then it might be a controller...
        } else if (!empty($url[0]) && file_exists('../app/' . $this->_module . '/controllers/' . $url[0] . '.php')) {

            $this->controller = $url[0]; // if it is a controller then assign it
            unset($url[0]);
            $url = array_values($url); // reset the array to zero

        } // else if url is empty default {module}{controller}{method} is loaded

        // default is ../app/learn/home/index.php
        require_once '../app/' . $this->_module . '/controllers/' . $this->_controller . '.php';
        $this->_controller = new $this->_controller;

        // if there are methods left in the array
        if (isset($url[0])) {
            // and the methods are legit
            if (method_exists($this->_controller, $url[0])) {
                // sets the method that we will be using
                $this->_method = $url[0];
                unset($url[0]);

            } // else nothing is set
        }

        // if there is anything else left in $url then it is a parameter
        $this->_params = $url ? array_values($url) : [];
        // calling everything
        call_user_func_array([$this->_controller, $this->_method], $this->_params);
    }

    public function parseUrl() {
        // checks if there is a url to work with
        if (isset($_GET['url'])) {
            // explodes the url by the '/' and returns an array of url 'elements'
            return $url = EXPLODE('/', filter_var(rtrim($_GET['url'], '/'), FILTER_SANITIZE_URL));
        }
    }
}

到目前为止,这似乎对我很有效,但是。

    • 问题**
    • 我不确定这是否是此问题的首选解决方案。**对每个页面请求调用is_dir()检查是否会降低我的应用的速度?

你会如何设计一个解决方案,还是我完全误解了这个问题?
提前感谢您的时间和考虑!!

mzsu5hc0

mzsu5hc01#

根据我的经验,我经常使用.htaccess文件将任何请求重定向到一个唯一的index.php文件,这两个文件都放在public_html文件夹中.htaccess文件的内容如下(您的Apache服务器应该启用mod_rewrite):

<IfModule mod_rewrite.c>
 RewriteEngine On
 RewriteBase /
 RewriteRule ^index\.php$ - [L]
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteRule . /index.php [L]
</IfModule>

然后,在index.php文件中你可以解析请求的url,定义配置,公共变量,路径等,并包含其他必要的php文件。

require( dirname( __FILE__ ) . '/your_routing.php' );
 require( dirname( __FILE__ ) . '/your_configs.php' );
 require( dirname( __FILE__ ) . '/admin/yourfile.php' );
 ...

相关问题