-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
46 lines (36 loc) · 1.11 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
require './configs/config.php';
// 自动加载类
function mvc_autoload($classname)
{
// echo $classname;
if (file_exists("./models/{$classname}.class.php")) {
require "./models/{$classname}.class.php";
} else if (file_exists("./controllers/{$classname}.class.php")) {
require "./controllers/{$classname}.class.php";
} else {
header("HTTP/1.0 404 not found");
echo '<h1>404 NOT FOUND: 来自于入口文件</h1>';
exit;
}
}
// 导入模版引擎
require './libs/Smarty.class.php';
// 注册给定的函数作为 __autoload 的实现
spl_autoload_register('mvc_autoload');
// 实例化模版引擎
// $smarty = new Smarty();
// var_dump($smarty);
// 初始化配置
// 获取用户参数
// 获取控制器名
$c = (!empty($_GET['c']))?$_GET['c']:'Index';
// 获取操作名 方法名
$a = (!empty($_GET['a']))?$_GET['a']:'index';
// 拼装类名
$classname = $c.'Controller';
// 实例化控制器
$controller = new $classname();
// var_dump($controller);
// 调用控制器中的方法
$controller->$a();