ThinkPHP3.1.3原始碼分析(五) App.class.php

程式碼修行者發表於2014-12-30

Think.class.php 的 start()方法 最後 呼叫了App::run();


App類最重要的是兩個部分

1、init()函式

a.過濾了$_GET,$_POST的資料

b. 

// URL排程
Dispatcher::dispatch();
2、exec()函式

a.建立對應的Action

if(!preg_match('/^[A-Za-z](\w)*$/',MODULE_NAME)){ // 安全檢測
    $module  =  false;
}else{
    //建立Action控制器例項
    $group   =  defined('GROUP_NAME') && C('APP_GROUP_MODE')==0 ? GROUP_NAME.'/' : '';
    $module  =  A($group.MODULE_NAME); 
}

b.呼叫對應的方法

try{
    if(!preg_match('/^[A-Za-z](\w)*$/',$action)){
        // 非法操作
        throw new ReflectionException();
    }
    //執行當前操作
    $method =   new ReflectionMethod($module, $action);
    if($method->isPublic()) {
        $class  =   new ReflectionClass($module);
        // 前置操作
        if($class->hasMethod('_before_'.$action)) {
            $before =   $class->getMethod('_before_'.$action);
            if($before->isPublic()) {
                $before->invoke($module);
            }
        }
        // URL引數繫結檢測
        if(C('URL_PARAMS_BIND') && $method->getNumberOfParameters()>0){
            switch($_SERVER['REQUEST_METHOD']) {
                case 'POST':
                    $vars    =  array_merge($_GET,$_POST);
                    break;
                case 'PUT':
                    parse_str(file_get_contents('php://input'), $vars);
                    break;
                default:
                    $vars  =  $_GET;
            }
            $params =  $method->getParameters();
            foreach ($params as $param){
                $name = $param->getName();
                if(isset($vars[$name])) {
                    $args[] =  $vars[$name];
                }elseif($param->isDefaultValueAvailable()){
                    $args[] = $param->getDefaultValue();
                }else{
                    throw_exception(L('_PARAM_ERROR_').':'.$name);
                }
            }
            $method->invokeArgs($module,$args);
        }else{
            $method->invoke($module);
        }
        // 後置操作
        if($class->hasMethod('_after_'.$action)) {
            $after =   $class->getMethod('_after_'.$action);
            if($after->isPublic()) {
                $after->invoke($module);
            }
        }
    }else{
        // 操作方法不是Public 丟擲異常
        throw new ReflectionException();
    }
} catch (ReflectionException $e) { 
    // 方法呼叫發生異常後 引導到__call方法處理
    $method = new ReflectionMethod($module,'__call');
    $method->invokeArgs($module,array($action,''));
}

二、值得說的程式設計小細節:

在呼叫 Action對應方法的時候,使用了php中的反射機制

相關文章