Browse Source

Now projects can have captal letters on the folder name

ahwelp 5 năm trước cách đây
mục cha
commit
47091f1754
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      publiclib.php

+ 2 - 1
publiclib.php

@@ -6,7 +6,8 @@ spl_autoload_register(function ($class_name) {
     
     $path[sizeof($path)-1] = '';
 
-    $path = strtolower(DIR_ROOT. implode(DIRECTORY_SEPARATOR, $path));
+    //$path = strtolower(DIR_ROOT. implode(DIRECTORY_SEPARATOR, $path));
+    $path = DIR_ROOT . strtolower(implode(DIRECTORY_SEPARATOR, $path));
 
     if(is_file($path . $fileName . '.php')){
         return include $path . $fileName . '.php';