PHP MVC 从零学起(1)
PHP MVC 从零学起,带你编写自己的框架。
想拥有属于自己的框架吗?来吧,带你装B,带你飞。
项目默认访问:http://虚拟域名/index.php?mod=main&act=index
第1集,简单入门 MVC
目录结构:
-----------controllers
----------------------controller.php
----------------------main.php
-----------views
----------------------index.php
index.php
1. [文件] mvc_1_2014-12-8.7z
2. [代码]index.php
<?php // 定义路径 define('MVC_PATH', dirname(__FILE__)); define('CONTROLLERS_PATH', MVC_PATH.'/controllers'); define('VIEWS_PATH', MVC_PATH . '/views'); $mod = $_REQUEST['mod'] = !empty($_REQUEST['mod']) ? $_REQUEST['mod'] : 'main'; $act = $_REQUEST['act'] = !empty($_REQUEST['act']) ? $_REQUEST['act'] : 'index'; require CONTROLLERS_PATH . '/controller.php'; require CONTROLLERS_PATH . '/' . $mod . '.php'; $c = new $mod(); $c->$act(); ?>
Copy after login
3. [代码]controllers/controller.php
<?php class controller { public function display($template, $data){ extract($data); ob_start(); include VIEWS_PATH . '/' . $template; $content = ob_get_contents(); ob_end_clean(); exit($content); } } ?>
Copy after login
4. [代码]controllers/main.php
<?php class main extends controller { public function index(){ $data = array('a' => 'hello word!'); $this->display('index.php', $data); } } ?>
Copy after login
5. [代码]views/index.php
<?php echo $a;?>
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
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article
Roblox: Grow A Garden - Complete Mutation Guide
3 weeks ago
By DDD
Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
How to fix KB5055612 fails to install in Windows 10?
3 weeks ago
By DDD
Nordhold: Fusion System, Explained
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Blue Prince: How To Get To The Basement
1 months ago
By DDD

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics
Java Tutorial
1664
14


CakePHP Tutorial
1423
52


Laravel Tutorial
1318
25


PHP Tutorial
1269
29


C# Tutorial
1248
24

