1
0
mirror of https://github.com/mosbth/cimage.git synced 2025-07-26 03:01:15 +02:00
Files
php-cimage/autoload.php
2015-12-05 14:50:49 +01:00

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);
}
});