1. index.php 入口文件 2. ThinkPHP/ThinkPHP.php 在php5.3版本以后 设置常量有两种方式: const name = value; 作用域根据当前命名空间决定 define() 作用域全局 ① 定义了许多常量 ② 引入核心文件Think.class.php Think::start(); 3. ThinkPHP/Library/Think/Think.class.php static function start() ① 引入系统核心文件 ② 引入配置文件…
一.跨控制器调用 UserController.class.php <?php namespace Home/Controller use Think/Controller class UserController extends Controller{ public function show(){ //TODO } } IndexController.class.php(方法一) <?php namespace Home/Controller use Think/Controller cl…