Files
Smart-Farm/app/Common/extend/tenxunyunimage/autoload.php
2025-12-22 14:32:54 +08:00

11 lines
263 B
PHP

<?php
function classLoader1($class)
{
$path = str_replace('\\', DIRECTORY_SEPARATOR, $class);
$file = __DIR__ . DIRECTORY_SEPARATOR . $path . '.php';
if (file_exists($file)) {
require_once $file;
}
}
spl_autoload_register('classLoader1');