cs-20180418/autoload.php (10 lines of code) (raw):

<?php spl_autoload_register(function ($class) { $name = str_replace('AlibabaCloud\\SDK\\CS\\V20180418\\', '', $class); $file = __DIR__ . \DIRECTORY_SEPARATOR . 'src' . \DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $name) . '.php'; if (file_exists($file)) { require_once $file; return true; } return false; });