1 Star 0 Fork 1

weli/php-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
autoload.php 429 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
if ( file_exists(dirname(__FILE__).'/vendor/autoload.php') ) {
require_once dirname(__FILE__).'/vendor/autoload.php';
}
function classLoader($class)
{
$path = str_replace('\\', DIRECTORY_SEPARATOR, $class);
$file = __DIR__ . '/src/' . $path . '.php';
if (file_exists($file)) {
require_once $file;
}
}
spl_autoload_register('classLoader');
require_once __DIR__ . '/src/Qiniu/functions.php';
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/abduweli205/php-sdk.git
git@gitee.com:abduweli205/php-sdk.git
abduweli205
php-sdk
php-sdk
master

搜索帮助