快速业务通道

PHP MVC模式在网站架构中的实现

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-25
p;        // Bind data to HTML
        }
    }

    //! An accessor
    /**
    * Returns the rendered HTML
    * @return string
    */
    function display () {
        return $this->output;
    }
}
?>

 


摘要:MVC模式在网站架构中十分常见。它允许我们建立一个三层结构的应用程式,从代码中分离出有用的层,帮助设计师和开发者协同工作以及提高我们维护和扩展既有程式的能力。本文将向您介绍MVC模式在PHP中的实现。
标签:PHP MVC  MVC模式  PHP网站
Oracle帮您准确洞察各个物流环节
Oracle帮您准确洞察各个物流环节
最后是控制器,我们将把视图实现为一个子类。

<?php
/**
*  Controls the application
*/
class ProductController extends ProductView {

    //! A constructor.
    /**
    * Constucts a new ProductController object
    * @param $model an instance of the ProductModel class
    * @param $getvars the incoming HTTP GET method variables
    */
    function ProductController (&$model,$getvars=null) {
        ProductView::ProductView($model);
        $this->header();
        switch ( $getvars[''view''] ) {
            case "product":
                $this->productItem($getvars[''id'']);
                break;
            default:
                if ( empty ($getvars[''rownum'']) ) {
                    $this->productTable();
                } else {
             $this->productTable($getvars[''rownum'']);
                }
                break;
        }
        $this->footer();
    }
}
?>

 

 

注意这不是实现MVC的唯一方式??比如你可以用控制器实现模型同时整合视图。这只是演示模式的一种方法。

我们的index.php 文件看起来像这样:

<?php
require_once(''lib/DataAccess.php'');
require_once(''lib/ProductModel.php'');
require_once(''lib/ProductView.php'');
require_once(''lib/ProductController.php'');

$dao=& new DataAccess (''loc

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号