[更新]修正Linux代码加载机制

This commit is contained in:
Anyon 2018-02-01 09:56:53 +08:00
parent e0a09e3004
commit 6feff40c38

View File

@ -14,7 +14,7 @@
// 动态注册SDK自动加载
spl_autoload_register(function ($classname) {
$filename = __DIR__ . DIRECTORY_SEPARATOR . str_replace(['\\', '/'], DIRECTORY_SEPARATOR, $classname) . '.php';
$filename = __DIR__ . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $classname) . '.php';
if (stripos($classname, 'WeChat') === 0 && file_exists($filename)) {
include $filename;
}