Files
LE_FRAMEWORK/LE/sys_autoload.php
indeferend df825e3d2f Draft v1
2021-05-23 06:26:34 +05:00

6 lines
185 B
PHP

<?php
/* LE Framework autoload core classes */
spl_autoload_register(function ($class_name)
{
if (is_file(CORE_CLSDIR.$class_name.".php")) include CORE_CLSDIR.$class_name.".php";
});