短信验证 composer扩展

This commit is contained in:
“wanyongkang”
2022-05-13 17:02:00 +08:00
parent ce3cc26c02
commit 7bf5866d7c
357 changed files with 42208 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
spl_autoload_register(function ($class) {
$name = str_replace('AlibabaCloud\\OpenApiUtil\\', '', $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;
});
if (file_exists(__DIR__ . '/vendor/autoload.php')) {
require_once __DIR__ . '/vendor/autoload.php';
}