-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathapi.cls.php
executable file
·84 lines (75 loc) · 2.02 KB
/
api.cls.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/*
* This file is part of the phpems/phpems.
*
* (c) oiuv <[email protected]>
*
* 项目维护:oiuv(QQ:7300637) | 定制服务:火眼(QQ:278768688)
*
* This source file is subject to the MIT license that is bundled.
*/
class ginkgo
{
public $G = [];
public $L = [];
public $I = ['app' => [], 'core' => []];
public $app;
public $defaultApp = 'exam';
public function __construct()
{
}
//对象工厂
public function make($G, $app = null)
{
if ($app) {
return $this->load($G, $app);
}
if (!isset($this->G[$G])) {
if (file_exists('../lib/'.$G.'.cls.php')) {
include '../lib/'.$G.'.cls.php';
} else {
return false;
}
$this->G[$G] = new $G($this);
if (method_exists($this->G[$G], '_init')) {
$this->G[$G]->_init();
}
}
return $this->G[$G];
}
//加载对象类文件并生成对象
public function load($G, $app)
{
if (!$app) {
return false;
}
$o = $G.'_'.$app;
if (!isset($this->L[$app][$o])) {
$fl = '../app/'.$app.'/cls/'.$G.'.cls.php';
if (file_exists($fl)) {
include $fl;
} else {
return false;
}
//die('Unknown class to init!The class is '.$app.'::'.$G);
$this->L[$app][$o] = new $o($this);
if (method_exists($this->L[$app][$o], '_init')) {
$this->L[$app][$o]->_init();
}
}
return $this->L[$app][$o];
}
//执行页面
public function run()
{
$ev = $this->make('ev');
include '../lib/config.inc.php';
header('P3P: CP=CAO PSA OUR');
header('Content-Type: text/html; charset='.HE);
ini_set('date.timezone', 'Asia/Shanghai');
date_default_timezone_set('Etc/GMT-8');
error_reporting(0);
$app = new app($this);
$app->run();
}
}