mirror of
https://github.com/PGYER/codefever.git
synced 2026-05-08 14:36:58 +08:00
15 lines
255 B
PHP
Executable File
15 lines
255 B
PHP
Executable File
<?php
|
|
/**
|
|
* autoload libraries
|
|
*/
|
|
|
|
function myClassLoader($name)
|
|
{
|
|
$path = APPPATH . '/libraries/' . str_replace('_', '/', $name) . '.php';
|
|
if (file_exists($path)) {
|
|
require_once($path);
|
|
}
|
|
}
|
|
|
|
spl_autoload_register('myClassLoader');
|