autoload.php 411 B

1234567891011121314
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2018-01-16 12:03
  7. */
  8. spl_autoload_register(function($className){
  9. $name = str_replace("feehi\\cdn\\", '', $className) . '.php';
  10. $name = str_replace("\\", "/", $name);
  11. $path = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'src/';
  12. $fullFile = $path . $name;
  13. if(is_file($fullFile)) require $fullFile;
  14. });