1234567891011 |
- <?php
- // by 请勿倒卖,已申请软著,否则追究法律责任
- PHP_VERSION < "7.1" && exit("需要 PHP >= 7.1 , 当前版本 : " . PHP_VERSION);
- include_once "source/system/db.class.php";
- $read = "app/" . $info . "/" . $module;
- if (findClassFile($read)) {
- loadClass($info, $module, $action);
- } else {
- loadClass("index", "app", "index", [$info, $module]);
- }
|