加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
init.php 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
Anyon 提交于 2018-01-10 16:22 . [更新]修改加载注册机制
<?php
// +----------------------------------------------------------------------
// | pay-php-sdk
// +----------------------------------------------------------------------
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目:https://github.com/zoujingli/pay-php-sdk
// +----------------------------------------------------------------------
// | 项目设计及部分源码参考于 yansongda/pay,在此特别感谢!
// +----------------------------------------------------------------------
// 注册类库自动加载, 适用于普通加载
spl_autoload_register(function ($class) {
if (stripos($class, 'Pay\\') === 0) {
list($search, $replace) = [['\\', 'Pay/'], ['/', 'src/']];
$filename = __DIR__ . DIRECTORY_SEPARATOR . str_replace($search, $replace, $class) . '.php';
file_exists($filename) && include $filename;
}
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化