-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathAutoloader.php
59 lines (51 loc) · 1.47 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
55
56
57
58
59
<?php
/*
* This file is part of the pl1998/thirdparty_oauth.
*
* (c) pl1998<pltruenine@163.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Thirdparty;
/**
* 执行自动加载 自动加载类
* Class Autoloader.
*/
class Autoloader
{
protected static $_autoloadRootPath = '';
/**
* Set autoload root path.
*
* @param string $root_path
*
* @return void
*/
public static function setRootPath($root_path)
{
self::$_autoloadRootPath = $root_path;
}
public static function loadByNamespace($name)
{
$class_path = \str_replace('\\', \DIRECTORY_SEPARATOR, $name);
if (0 === \strpos($name, 'Thirdparty\\')) {
$class_file = __DIR__.\substr($class_path, \strlen('Thirdparty')).'.php';
} else {
if (self::$_autoloadRootPath) {
$class_file = self::$_autoloadRootPath.\DIRECTORY_SEPARATOR.$class_path.'.php';
}
if (empty($class_file) || !\is_file($class_file)) {
$class_file = __DIR__.\DIRECTORY_SEPARATOR.'..'.\DIRECTORY_SEPARATOR."$class_path.php";
}
}
if (\is_file($class_file)) {
require_once $class_file;
if (\class_exists($name, false)) {
return true;
}
}
return false;
}
}
\spl_autoload_register('\Thirdparty\Autoloader::loadByNamespace');