This commit is contained in:
2020-09-15 19:28:17 +08:00
parent 480abf2d28
commit ca92beac03
+2 -1
View File
@@ -46,7 +46,8 @@ if (!function_exists('loadByDir')) {
foreach (glob($path . '/*') as $value) { foreach (glob($path . '/*') as $value) {
if (is_dir($value)) { if (is_dir($value)) {
loadByDir($value); loadByDir($value);
}else{ } else {
var_dump($value);
include_once "$value"; include_once "$value";
} }
} }