TP Execution Process Analysis

Source: Internet
Author: User

1. Entry file index.php

?

2. thinkphp/thinkphp.php

Require Think_path. ' Common/runtime.php ';

?

3. thinkphp/common/runtime.php

Declaring many constant information

Loading system core class files

if (Is_file ($file)) Require_cache ($file);

Automatically create an app catalog

Build_app_dir ();

Think::start ();

4. thinkphp/lib/core/think.class.php

static function Start () {}

Think::buildapp (); Precompiled project

Introducing the relevant configuration file

App::run ();

5. thinkphp/lib/core/app.class.php

static public Function run () {}

App::init ();

Dispatch analyzing routes

Analysis Route (Controller Module_name method Action_name) index.php?c= controller &a= method

App::exec ();

Make the Controller object call the corresponding method by reflection Reflectionmethod

?

TP Execution Flow analysis

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.