Table of Contents
一、文件结构 
二、控制器 
Home Backend Development PHP Tutorial php打造属于自己的MVC框架思路

php打造属于自己的MVC框架思路

Jun 20, 2016 pm 01:03 PM
controller index nbsp php

本篇文章只是通过一个案例简单的介绍了php的MVC实现原理,其实大部分框架的MVC也都是基于这个原理实现的,废话不多说,直接上代码额!

一、文件结构 

建立3个文件夹 
controller文件夹存放控制器文件 
view文件夹存放视图文件 
model文件夹存放数据文件 
建立1个index.php 作为唯一入口 

二、控制器 

我们在controller文件夹下建立一个democontroller.php文件,文件内容如下

<p><?php </p>class DemoController <br />{ <br />function index() <br />{ <br />echo('hello world'); <br />} <br />} <br /><p>/* End of file democontroller.php */ </p>
Copy after login

这个文件里面我们只是建立了一个名为DemoController的对象并包含一个index的方法,该方法输出hello world。

下面在index.php中执行DemoController中index方法。

index.php的代码如下

<p><?php </p>require('controller/democontroller.php'); <br />$controller=new DemoController(); <br />$controller->index(); <br /><p>/* End of file index.php */ </p>
Copy after login

运行index.php,ok如愿我们看到了我们久违的hello world。这两个文件非常简单,但也揭示了一点点mvc的本质,通过唯一入口运行我们要运行的控制器。当然controller部分应该是由uri来决定的,那么我们来改写一下index.php使他能通过uri来决定运行那个controller。

index.php改写代码如下:

<p><?php </p>$c_str=$_GET['c']; <br />//获取要运行的controller <br />$c_name=$c_str.'Controller'; <br />//按照约定url中获取的controller名字不包含Controller,此处补齐。 <br />$c_path='controller/'.$c_name.'.php'; <br />//按照约定controller文件要建立在controller文件夹下,类名要与文件名相同,且文件名要全部小写。 <br />$method=$_GET['a']; <br />//获取要运行的action <br />require($c_path); <br />//加载controller文件 <br />$controller=new $c_name; <br />//实例化controller文件 <br />$controller->$method(); <br />//运行该实例下的action <br /><p>/* End of file index.php */ </p>
Copy after login

在浏览器中输入http://localhost/index.php?c=demo&a=index,得到了我们的hello world。当然如果我们有其他的controller并且要运行它,只要修改url参数中的c和a的值就可以了。

这里有几个问题要说明一下。

一、php是动态语言,我们直接可以通过字符串new出我们想要的对象和运行我们想要的方法,即上面的new $c_name,我们可以理解成new 'DemoController',因为$c_name本身的值就是'DemoController',当然直接new 'DemoController'这么写是不行的,其中的'DemoController'字符串必须通过一个变量来中转一下。方法也是一样的。

二、我们在url中c的值是demo,也就是说$c_name 的值应该是demoController呀,php不是区分大小写吗,这样也能运行吗?php区分大小写这句话不完整,在php中只有变量(前面带$的)和常量(define定义的)是区分大小写的,而类名方,法名甚至一些关键字都是不区分大小写的。而true,false,null等只能全部大写或全部小写。当然我们最好在实际编码过程中区分大小写。

三、视图

我们在前面的controller中只是输出了一个“hello world”,并没有达到mvc的效果,下面我将在此基础上增加视图功能,相信到这里大家基本已经能想到如何添加视图功能了。对,就是通过万恶的require或者include来实现。

首先我们在view文件夹下建立一个index.php,随便写点什么(呵呵,我写的还是hello world)。之后我们改写一下我们之前的DemoController。

代码如下:

<p><?php </p>class DemoController <br />{ <br />function index() <br />{ <br />require('view/index.php'); <br />} <br />} <br /><p>/* End of file democontroller.php */</p>
Copy after login

再在浏览器中运行一下,看看是不是已经输出了我们想要的内容了。

接着我们通过controller向view传递一些数据看看,代码如下:

<p><?php </p>class DemoController <br />{ <br />function index() <br />{ <br />$data['title']='First Title'; <br />$data['list']=array('A','B','C','D'); <br />require('view/index.php'); <br />} <br />} <br /><p>/* End of file democontroller.php */</p>
Copy after login

view文件夹下index.php文件代码如下:

<p><html> </p><head> <br /><title>demo</title> <br /></head> <br /><body> <br /><h1><?php echo $data['title'];?></h1> <br /><?php <br />foreach ($data['list'] as $item) <br />{ <br />echo $item.'<br>'; <br />} <br />?> <br /></body> <br /></html>
Copy after login


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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles