文件目录:
- test.php
- testController.class.php
- testModel.class.php
- testView.class.php
模型文件 testModel.class.php (文件名+ Model+类.php)
<?php Class testModel {//模型类进行数据获取和处理 function get() { return 'php'; } } ?>视图文件 testView.class.php
<?php Class testView.class.php {//视图文件显示数据 function display($data) { echo $data; } } ?>控制器文件 testController.class.php
<?php Class testController {//控制器用来从模型文件中获取数据传入视图文件进行显示,先实例化再调用方法 function show() { $testModel = new testModel(); $data = $testModel -> get(); $testView = new testView(); $testView -> display($data); } } ?>test.php 访问的文件
<?php require_once "testModel.class.php" require_once "testController.class.php" require_once "testView.class.php" //调用控制器 $testController = new testController(); $testController -> show(); ?>访问test.php即可显示出内容,实现基础的MVC php
【php框架学习】最简单的php mvc 模型框架实现
最新推荐文章于 2024-11-09 23:04:49 发布
本文介绍了一个简单的 PHP MVC 架构实现案例,包括模型、视图和控制器的基本使用方式。通过实例化模型来获取数据,并将数据传递给视图进行展示。
139

被折叠的 条评论
为什么被折叠?



