index.php 335 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * 定义根目录常量 /www
  4. */
  5. define('BASEDIR',__DIR__);
  6. /**
  7. * 载入自动加载
  8. */
  9. include BASEDIR.'/Core/Loader.php';
  10. /**
  11. * 自动载入类 传入方法名
  12. * 当实例化或者调用不存在的类时,会回调该方法
  13. */
  14. spl_autoload_register('\\Core\\Loader::autoload');
  15. App\Controller\Home\Index::test();