关于创建简单PHP MVC应用程序的问题

时间:2015-03-22 10:02:35

标签: php oop model-view-controller

您能告诉我如何在PHP中创建一个非常简单的OOP MVC应用程序,以便从这样的表单中获取一些用户数据

<form>
First Name:<br>
<input type="text" name="firstname">
<br>
Last Name:<br>
<input type="text" name="lastname">
<br><br>
<input type="submit" value="Submit">
</form>

并像

一样回应它
Your Name Full Name is XXXX,XXXXXX.

我有一个像

这样的文件结构

enter image description here

并在init.php

spl_autoload_register(function($class){
     require_once 'controllers/'.$class.'.php';
     require_once 'views/'.$class.'.php';
     require_once 'models/'.$class.'.php';
});

Visitor = new Visitor();

现在让我们说如果我在Model中创建一个包含m_visitor.php类的Visitor(),我如何在Controller和View中创建关联的类或文件?以及我如何同步它们以获取和设置从模型到视图和控制器的数据?

这对我真正理解如何处理PHP中的OOP - MVC结构非常有帮助。感谢

0 个答案:

没有答案