php-test/init.php

9 lines
227 B
PHP
Raw Normal View History

2019-10-04 18:05:39 +00:00
<?php
2019-10-05 14:54:19 +00:00
session_start();
2019-10-04 18:05:39 +00:00
require_once 'config.php';
spl_autoload_register( function( $class_name ){
2019-10-05 14:54:19 +00:00
$class_name = str_replace( 'TestProject\\', 'classes/', $class_name );
2019-10-04 18:05:39 +00:00
include strtolower( $class_name ) . '.class.php';
} );