mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-01-22 00:45:19 +08:00
14 lines
248 B
PHP
14 lines
248 B
PHP
<?php
|
|
|
|
|
|
function autoload($className)
|
|
{
|
|
$fileName = __DIR__ . DIRECTORY_SEPARATOR . $className . '.php';
|
|
if (is_file($fileName)) {
|
|
require $fileName;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
spl_autoload_register('autoload'); |