7 Star 14 Fork 5

Gitee 极速下载/HookPHP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/letwang/HookPHP
克隆/下载
preload.php 458 Bytes
一键复制 编辑 原始数据 按行查看 历史
letwang 提交于 2022-07-03 17:20 . Bootstrap 5.1
<?php
require __DIR__ . '/vendor/Hook/File/File.php';
use Hook\File\File;
$value = [];
foreach (File::findFiles(__DIR__ . '/config', '*.php') as $file) {
$value['global'][basename($file, '.php')] = require $file;
}
foreach (glob(__DIR__ . '/app/*', GLOB_ONLYDIR) as $appDir) {
foreach (File::findFiles($appDir . '/config', '*.php') as $file) {
$value[basename($appDir)][basename($file, '.php')] = require $file;
}
}
apcu_add($value);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/mirrors/HookPHP.git
[email protected]:mirrors/HookPHP.git
mirrors
HookPHP
HookPHP
master

搜索帮助