Files
cunkebao_v3/Server/extend/aliyun-oss-php-sdk-2.4.1/autoload.php

11 lines
289 B
PHP
Raw Normal View History

2025-03-12 12:18:06 +08:00
<?php
function classLoader($class)
{
$path = str_replace('\\', DIRECTORY_SEPARATOR, $class);
$file = __DIR__ . DIRECTORY_SEPARATOR .'src'. DIRECTORY_SEPARATOR . $path . '.php';
if (file_exists($file)) {
require_once $file;
}
}
spl_autoload_register('classLoader');