mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 09:52:47 +08:00
[更新]修正Linux代码加载机制
This commit is contained in:
parent
e0a09e3004
commit
6feff40c38
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user