From 58d3ef53843494233a9bba08ca17c96e8b454cc4 Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 6 Mar 2020 15:00:42 +0800 Subject: [PATCH] Update include.php --- include.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include.php b/include.php index e88c70e..cd3af5f 100644 --- a/include.php +++ b/include.php @@ -16,7 +16,7 @@ spl_autoload_register(function ($classname) { $pathname = __DIR__ . DIRECTORY_SEPARATOR; $filename = str_replace('\\', DIRECTORY_SEPARATOR, $classname) . '.php'; if (file_exists($pathname . $filename)) { - foreach (['WeChat', 'WeMini', 'AliPay', 'WePay', 'We'] as $prefix) { + foreach (['AliPay', 'WeChat', 'WeMini', 'WePay', 'We'] as $prefix) { if (stripos($classname, $prefix) === 0) { include $pathname . $filename; return true;