0 Star 0 Fork 253

天涯海角/payment

forked from 大愚/payment 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
autoload.php 321 Bytes
一键复制 编辑 原始数据 按行查看 历史
nihaibao 提交于 2017-02-15 16:16 . fix psr2
<?php
function classLoader($class)
{
$path = str_replace('\\', DIRECTORY_SEPARATOR, $class);
$path = str_replace('Payment' . DIRECTORY_SEPARATOR, '', $path);
$file = __DIR__ . '/src/' . $path . '.php';
if (file_exists($file)) {
require_once $file;
}
}
spl_autoload_register('classLoader');
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/xiaobb/payment.git
git@gitee.com:xiaobb/payment.git
xiaobb
payment
payment
master

搜索帮助