-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutoloader.php
54 lines (45 loc) · 1.37 KB
/
Autoloader.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
<?php
class Autoloader{
/**
* 类库自动加载,写死路径,确保不加载其他文件。
* @param string $class 对象类名
* @return void
*/
public static function autoload($class) {
$name = $class;
if(false !== strpos($name,'\\')){
$name = strstr($class, '\\', true);
}
$filename = TOP_AUTOLOADER_PATH."/top/".$name.".php";
if(is_file($filename)) {
include $filename;
return;
}
$filename = TOP_AUTOLOADER_PATH."/top/request/".$name.".php";
if(is_file($filename)) {
include $filename;
return;
}
$filename = TOP_AUTOLOADER_PATH."/top/domain/".$name.".php";
if(is_file($filename)) {
include $filename;
return;
}
$filename = TOP_AUTOLOADER_PATH."/aliyun/".$name.".php";
if(is_file($filename)) {
include $filename;
return;
}
$filename = TOP_AUTOLOADER_PATH."/aliyun/request/".$name.".php";
if(is_file($filename)) {
include $filename;
return;
}
$filename = TOP_AUTOLOADER_PATH."/aliyun/domain/".$name.".php";
if(is_file($filename)) {
include $filename;
return;
}
}
}
spl_autoload_register('Autoloader::autoload');