Update include.php

This commit is contained in:
Anyon 2020-03-06 15:00:42 +08:00
parent aaffc0a149
commit 58d3ef5384

View File

@ -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;