index.php 362 B

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