Browse Source

spl_autoload_register instead of __autoload

Tobias Reich 11 years ago
parent
commit
3e88ff4d68
1 changed files with 8 additions and 6 deletions
  1. 8 6
      php/autoload.php

+ 8 - 6
php/autoload.php

@@ -1,13 +1,15 @@
 <?php
 
-/**
- * @name		Autoload
- * @author		Tobias Reich
- * @copyright	2014 by Tobias Reich
- */
+###
+# @name		Autoload
+# @author		Tobias Reich
+# @copyright	2014 by Tobias Reich
+###
 
-function __autoload($class_name) {
+function lycheeAutoloader($class_name) {
 	require __DIR__ . '/modules/' . $class_name . '.php';
 }
 
+spl_autoload_register('lycheeAutoloader');
+
 ?>