2023-12-12 20:25:41 +00:00
|
|
|
<?php
|
2023-12-18 15:08:52 +00:00
|
|
|
// this is a custom autoloader that will load classes from the current directory
|
2023-12-12 20:25:41 +00:00
|
|
|
function customAutoloader($className) {
|
|
|
|
$filePath = __DIR__ . '/' . str_replace('\\', '/', $className) . '.php';
|
|
|
|
|
|
|
|
if (file_exists($filePath)) {
|
|
|
|
include $filePath;
|
|
|
|
}
|
|
|
|
}
|
2023-12-18 15:08:52 +00:00
|
|
|
// register the custom autoloader
|
2023-12-12 20:25:41 +00:00
|
|
|
spl_autoload_register('customAutoloader');
|