corpus/recursive-require
最新稳定版本:v1.2.0
Composer 安装命令:
composer require corpus/recursive-require
包简介
Library to Recursively Require Every PHP File in a Directory Tree
README 文档
README
Library to Recursively Require Every PHP File in a Directory Tree
Requirements
- php: >=7.4.0
Installing
Install the latest version with:
composer require 'corpus/recursive-require'
Usage
Here is a simple usage example:
<?php use Corpus\RecursiveRequire\Loader; require __DIR__ . '../vendor/autoload.php'; $loader = new Loader('path/to/directory'); $loader();
Documentation
Class: \Corpus\RecursiveRequire\Loader
Helper to recursively require all PHP files in a directory
Method: Loader->__construct
function __construct(string $path [, bool $once = false])
Parameters:
- string
$path- Root path to recursively require - bool
$once- Whether to userequire_onceinstead ofrequire
Method: Loader->__invoke
function __invoke([ string $regex = "/\\.php\$/"]) : array
Trigger the require(s)
Note: The order in which files are required is not guaranteed.
It will vary based on the Operating System and filesystem.
Do not rely on the order in which files are required.
Parameters:
- string
$regex- A regex to filter the files to require
Returns:
- array<string,mixed> - The result as a map of filename to return value.
统计信息
- 总下载量: 4.92k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-01-29