11 lines
269 B
PHP
Executable File
11 lines
269 B
PHP
Executable File
<?php
|
|
|
|
// Load project files
|
|
spl_autoload_register( function( $class ) {
|
|
$file = strtolower( str_replace( '_', '-', $class ) );
|
|
$file = dirname( __DIR__ ) . '/' . str_replace( '\\', '/', $file ) . '.class.php';
|
|
|
|
if ( file_exists( $file ) ) {
|
|
include $file;
|
|
}
|
|
} ); |