-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathinit.php
More file actions
18 lines (16 loc) · 862 Bytes
/
Copy pathinit.php
File metadata and controls
18 lines (16 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
// +----------------------------------------------------------------------
// | pay-php-sdk
// +----------------------------------------------------------------------
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目:https://github.com/zoujingli/pay-php-sdk
// +----------------------------------------------------------------------
spl_autoload_register(function ($class) {
if (0 === stripos($class, 'Pay\\')) {
$filename = __DIR__ . DIRECTORY_SEPARATOR . str_replace(['\\', 'Pay/',], ['/', 'src/'], $class) . '.php';
file_exists($filename) && include($filename);
}
});