Home > Backend Development > PHP Tutorial > php-mvc模式(3)

php-mvc模式(3)

WBOY
Release: 2016-06-20 12:59:28
Original
956 people have browsed it

    上两节说了PHP-MVC模式的简单实现,这里将引入smarty模板来替代MVC中的VIEW。


    这里在function.php函数中添加一个函数 OGN,用于生成smarty对象并且初始化属性。接下来将会调用这个函数生成smarty并且操作数据

在入口文件index.php中,先调用OGN将smarty对象实例化。


因为我们已经用smarty代替了View,所以不再需要V对象和方法了。

    最后,在tpl文件夹里面创建模板文件try.tpl:

    总结一下:MVC模式设计引入了Smarty执行了MVC中的View的职能。跟之前的MVC相比,改动了两个地方:

1》添加了一个函数OGN,用于生成smarty对象并返回;

2》在控制器文件中舍弃了View对象和方法,调用smarty对象的方法assign注册$data,在调用smarty对象display方法输出

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template