TrackManiaControl/application/core/Libs/curl-easy/autoload.php
2014-05-01 17:35:23 +02:00

15 lines
322 B
PHP

<?php
if (!defined('cURL_PATH')) {
define('cURL_PATH', __DIR__);
}
spl_autoload_register(
function ($className) {
$classPath = str_replace('\\', DIRECTORY_SEPARATOR, $className);
$filePath = cURL_PATH . DIRECTORY_SEPARATOR . $classPath . '.php';
if (file_exists($filePath)) {
require_once $filePath;
}
});