php-test/init.php

7 lines
138 B
PHP
Raw Normal View History

2019-10-04 18:05:39 +00:00
<?php
require_once 'config.php';
spl_autoload_register( function( $class_name ){
include strtolower( $class_name ) . '.class.php';
} );