Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * @param string $class The fully-qualified class name.
  4. * @return void
  5. */
  6. spl_autoload_register(function ($class) {
  7. // project-specific namespace prefix
  8. $prefix = 'SCF\\';
  9. // base directory for the namespace prefix
  10. $base_dir = __DIR__ . '/Application/scf/';
  11. // does the class use the namespace prefix?
  12. $len = strlen($prefix);
  13. if (strncmp($prefix, $class, $len) !== 0) {
  14. // no, move to the next registered autoloader
  15. return;
  16. }
  17. // get the relative class name
  18. $relative_class = substr($class, $len);
  19. // replace the namespace prefix with the base directory, replace namespace
  20. // separators with directory separators in the relative class name, append
  21. // with .php
  22. $file = $base_dir . str_replace('\\', '/', $relative_class) . '.php';
  23. // if the file exists, require it
  24. if (file_exists($file)) {
  25. require $file;
  26. }
  27. });