Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
Mods-for-HESK-Netsyms/api/bootstrap.php

11 rader
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);
}
});