1 Star 0 Fork 249

maccarty / payment

forked from 大愚 / payment 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
autoload.php 322 Bytes
一键复制 编辑 原始数据 按行查看 历史
大愚 提交于 2016-12-28 14:53 . 重心切回到主分支
<?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');
PHP
1
https://gitee.com/maccarty-dw/payment.git
git@gitee.com:maccarty-dw/payment.git
maccarty-dw
payment
payment
master

搜索帮助