Ai
1 Star 0 Fork 0

Alibaba Cloud/alibabacloud-kms-php-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
autoload.php 571 Bytes
一键复制 编辑 原始数据 按行查看 历史
yingzhi.lhb 提交于 2023-12-21 11:30 +08:00 . init project
<?php
if (\file_exists(__DIR__ . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php')) {
require_once __DIR__ . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php';
}
spl_autoload_register(function ($class) {
$name = \str_replace('AlibabaCloud\\Kms\\Kms20160120\\', '', $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;
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/aliyun/alibabacloud-kms-php-sdk.git
git@gitee.com:aliyun/alibabacloud-kms-php-sdk.git
aliyun
alibabacloud-kms-php-sdk
alibabacloud-kms-php-sdk
master

搜索帮助