myadmin/vendor/autoload.php
2025-07-03 13:11:29 -03:00

8 lines
No EOL
170 B
PHP

<?php
spl_autoload_register(function ($className) {
$filePath = str_replace('\\', DIRECTORY_SEPARATOR, $className);
require_once($filePath . '.class.php');
});