PHP MVC框架核心類別
現在我們舉幾個核心框架的範例示範:在framework/core下建立一個Framework.class.php的檔案。寫入以下程式碼:
// framework/core/Framework.class.php
class Framework {
public static function run() {
require "framework/core/Framework.class.php";
Framework::run();
你可以在你的瀏覽器裡存取index.php看到結果。通常這個靜態方法被命名為run()或bootstrap()。在這個方法中,我們要做3件最主要的事:
class Framework {
public static function run() {
// self:: autoload();
self::dispatch();
}
private static function init() {
.
private static function dispatch() {
}
}
初始化
init ()方法:
// Initialization
private static function init() {
// Define path constants ine("ROOT", getcwd() . DS) ;
define("APP_PATH", ROOT . 'application' . DS);
define("FRAMEWORK_PATH", ROOT . "defamework" ATHDS); . "public" . DS );
define("CONFIG_PATH", APP_PATH . "config" . DS);
define("CONTROLLER_PATH", APP_ define("CONTROLLER_PATH", APP_PATHPATH .D.D; PATH", APP_PATH . "models" . DS);
define("VIEW_PATH", APP_PATH . "views" . DS);
define("CORE_PATH", AMEWOWO_PATH . FRAMEWORK_PATH . "database" . DS);
define("LIB_PATH", FRAMEWORK_PATH . "libraries" . DS);
define("HELPER_PATH", FR. "UPLOAD_PATH", PUBLIC_PATH . "uploads " . DS);
// Define platform, controller, action, for example:
// index.php?p=admin&c=Goods&a=地址]) ? $_REQUEST['p'] : 'home');
define("CONTROLLER", isset($_REQUEST['c']) ? $_REQUEST['c'] : 'Index'); define("ACTION", isset($_REQUEST['a']) ? $_REQUEST['a'] : 'index');
define("CURR_CONTROLLER_PATH", CONTROER_PATH .Pdefine CURR_VIEW_PATH", VIEW_PATH . PLATFORM . DS);
// Load core classes
require CORE_PATH . "Controller.class..
require DB_PATH . "Mysql .class.php";
require CORE_PATH . "Model.class.php";
// Load configuration file
Start session
session_start();
}
在註釋中你可以看到每一步的目的。
自動載入
在專案中,我們不想在腳本中想使用一個類別的時候手動的去include或require加載,這就是為什麼PHP MVC框架都有自動載入的功能。例如,在symfony中,如果你想要載入lib下的類,它將會被自動引入。很神奇是吧?現在讓我們在自己的框架中加入自動載入的功能。問
// Define a custom load method
private static function load($classname){
// Here simply autoload app's controller and model classes
🠦 🜠🜠), {str.// Controller
require_once CURR_CONTROLLER_PATH . "$classname.class.php";
require_once MODEL_PATH . "$classname .class.php";
}
}
每個框架都有自己的命名規則,我們的也不例外。對於一個控制器類,它需要被命名成類似xxxController.class.php,對於一個模型類,需要被命名成xxModel.class.php。為什麼在使用一個框架的時候你需要遵守它的命名規則呢?自動加載就是一條原因。
路由/分發
// Routing and dispatching
private static function dispatch(){
// Instantiate the controller class and call its
// Instantiate the controller class and call its
我;
$action_name = ACTION . "Action";
$controller = new $controller_name;
$controller->$action_name();
}方法中。
基礎Controller類別
通常在框架的核心類別中都有一個基礎的控制器。在symfony中,被稱為sfAction;在iOS中,被稱為UIViewController。這裡我們命名為Controller,在framework/core下建立Controller.class.php
// Base Controller
class Controller{
// Base Controller has a property called $
// Base Controller has a property called $loader, instance class class class (introduced later)
protected $loader;
public function __construct(){
$this $message,$wait = 0){
if ( $wait == 0){
header("Location:$url");
} ";
}
exit;
}
}
基礎控制器$loader ,它是Loader類別的實例化(後面介紹)。準確的說,$this->loader是一個變數指向了被實例化的Load類別。這裡我不過多的討論,但這的確是一個非常關鍵的概念。我遇過一些PHP開發者相信在這個語句之後:
$this->loader = new Loader();
$this->load是一個物件。不,它只是一個引用。這是從Java開始使用的,在Java之前,在C++和Objective C中稱為指標。引用是個封裝的指標型別。例如,在iOS(O-C)中,我們創建了一個物件:
UIButton *btn = [UIButton alloc] init];
載入類別
在framework.class.php中,我們已經封裝了應用程式的控制器和模型的自動加載。但是如何自動載入在framework目錄中的類別呢?現在我們可以新建一個Loader類,它會載入framework目錄中的類別和函數。當我們載入framework類別時,只需要呼叫這個Loader類別中的方法。
class Loader{
// Load library classes
public function library($lib){
loader helper functions. Naming conversion is xxx_helper.php;
public function helper($helper){
include HELPER_PATH . "{$helper}_helper.php";
}
}