Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
Mods-for-HESK-Netsyms/api/bootstrap.php

11 wiersze
278 B
PHP

<?php
spl_autoload_register(function ($class) {
// Uncomment for debugging
//echo 'Looking for class ' . $class . "\n";
$file = __DIR__ . DIRECTORY_SEPARATOR . str_replace('\\', '/', $class) . '.php';
if (file_exists($file)) {
require($file);
}
});