mirror of
https://github.com/mosbth/cimage.git
synced 2025-07-26 03:01:15 +02:00
12 lines
219 B
PHP
12 lines
219 B
PHP
<?php
|
|
/**
|
|
* Autoloader for CImage and related class files.
|
|
*
|
|
*/
|
|
spl_autoload_register(function ($class) {
|
|
$path = __DIR__ . "/src/CImage/{$class}.php";
|
|
if (is_file($path)) {
|
|
require($path);
|
|
}
|
|
});
|