gpt4 book ai didi

hmvc - 如何在 codeigniter 3.0 中实现 HMVC?

转载 作者:行者123 更新时间:2023-12-04 05:17:33 25 4
gpt4 key购买 nike

目前我正在使用codeigniter 3.0版。我想知道如何在其中实现 HMVC 结构,有人可以帮忙吗?

最佳答案

codeigniter 3 hmvc 模块文件夹用于:

https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc/downloads

1-下载文件并在应用程序中复制 C.i.3.0 forder

2- .htaccess

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

3-创建/应用程序/模块

4-/application/modules/welcome 在 Controller 、模型、 View 中创建

5-创建/application/modules/welcome/controllers/Welcome.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Welcome extends CI_Controller {

public function index()
{
$this->load->view('welcome_message');
}
}

请享用 :)

IMPORTANT : 'controllers' and 'models' initials files in the folder should be large. 'views' of files per folder in the letter should be small



enter image description here

关于hmvc - 如何在 codeigniter 3.0 中实现 HMVC?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30865998/

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