承接 corpus/recursive-require 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

Latest Stable Version License ci.yml

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 use require_once instead of require

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
  • 点击次数: 5
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04