承接 baraja-core/combinations 相关项目开发

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

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

baraja-core/combinations

Composer 安装命令:

composer require baraja-core/combinations

包简介

Smart algorithms about combinations and generators.

README 文档

README

Smart algorithms for generating all possible combinations (Cartesian product) from multiple sets of values.

This PHP library provides a simple, efficient way to generate every possible combination from an associative array where each key contains an array of possible values. Perfect for generating product variants, configuration matrices, test scenarios, and any situation requiring exhaustive combination enumeration.

✨ Key Principles

  • Cartesian Product Generation - Computes all possible combinations from multiple value sets
  • Key Preservation - Original associative keys are preserved in the output combinations
  • Value Uniqueness Enforcement - All values across all keys must be unique to ensure unambiguous key mapping
  • Strict Input Validation - Validates input format before processing to prevent runtime errors
  • Combination Counting - Ability to count total combinations without generating them (memory efficient)
  • Type Safety - Strict PHP 8.0+ typing with PHPStan level 8 analysis

🏗️ Architecture

The library consists of a single, focused class that handles all combination generation logic:

┌─────────────────────────────────────────────────────────────┐
│                   CombinationGenerator                      │
├─────────────────────────────────────────────────────────────┤
│  Public Methods:                                            │
│  ├── generate(array $input): array                          │
│  │   └── Returns all combinations with preserved keys       │
│  └── countCombinations(array $input): int                   │
│      └── Returns total count without generating             │
├─────────────────────────────────────────────────────────────┤
│  Internal:                                                  │
│  ├── combinations() - Recursive Cartesian product algorithm │
│  └── validateInput() - Input format validation              │
└─────────────────────────────────────────────────────────────┘

Algorithm Overview

The generator uses a recursive algorithm to compute the Cartesian product:

  1. Input Validation - Ensures all keys are non-numeric strings and all values are string arrays
  2. Value-to-Key Mapping - Creates a reverse lookup map from values to their original keys
  3. Recursive Combination - Builds combinations from the bottom up using recursion
  4. Key Restoration - Maps generated combinations back to their original associative keys

📦 Installation

It's best to use Composer for installation, and you can also find the package on Packagist and GitHub.

To install, simply use the command:

$ composer require baraja-core/combinations

You can use the package manually by creating an instance of the internal classes, or register a DIC extension to link the services directly to the Nette Framework.

Requirements

  • PHP 8.0 or higher

🚀 Basic Usage

Generating Combinations

use Baraja\Combinations\CombinationGenerator;

$generator = new CombinationGenerator();

$input = [
    'format' => ['M', 'L'],
    'date' => ['2020', '2021'],
];

$combinations = $generator->generate($input);

Input:

[
    'format' => ['M', 'L'],
    'date' => ['2020', '2021'],
]

Output:

[
    ['format' => 'M', 'date' => '2020'],
    ['format' => 'M', 'date' => '2021'],
    ['format' => 'L', 'date' => '2020'],
    ['format' => 'L', 'date' => '2021'],
]

Counting Combinations

If you only need to know how many combinations will be generated (e.g., for validation or progress indication), use the countCombinations() method:

$generator = new CombinationGenerator();

$input = [
    'size' => ['S', 'M', 'L', 'XL'],
    'color' => ['red', 'blue', 'green'],
    'material' => ['cotton', 'polyester'],
];

$count = $generator->countCombinations($input);
// Returns: 24 (4 × 3 × 2)

This method is memory-efficient as it calculates the count without generating the actual combinations.

📖 Advanced Examples

Product Variant Generation

$generator = new CombinationGenerator();

$productOptions = [
    'size' => ['S', 'M', 'L', 'XL'],
    'color' => ['black', 'white', 'navy'],
    'sleeve' => ['short', 'long'],
];

$variants = $generator->generate($productOptions);
// Generates 24 product variants

Test Matrix Generation

$generator = new CombinationGenerator();

$testMatrix = [
    'browser' => ['chrome', 'firefox', 'safari'],
    'os' => ['windows', 'macos', 'linux'],
    'resolution' => ['1080p', '4k'],
];

$testCases = $generator->generate($testMatrix);
// Generates 18 test scenarios

Single Dimension Input

The generator also handles single-dimension inputs correctly:

$generator = new CombinationGenerator();

$input = [
    'status' => ['active', 'inactive', 'pending'],
];

$result = $generator->generate($input);
// Returns: [['status' => 'active'], ['status' => 'inactive'], ['status' => 'pending']]

⚠️ Input Validation Rules

The generator enforces strict input validation to ensure correct operation:

1. Non-Numeric Keys Required

All top-level keys must be non-numeric strings:

// Valid
$input = ['size' => ['S', 'M'], 'color' => ['red', 'blue']];

// Invalid - throws InvalidArgumentException
$input = [0 => ['S', 'M'], 1 => ['red', 'blue']];
$input = ['123' => ['S', 'M']];

2. Values Must Be Arrays

Each key must contain an array of values:

// Valid
$input = ['size' => ['S', 'M', 'L']];

// Invalid - throws InvalidArgumentException
$input = ['size' => 'M'];

3. All Values Must Be Strings

Individual values within arrays must be strings:

// Valid
$input = ['year' => ['2020', '2021', '2022']];

// Invalid - throws InvalidArgumentException
$input = ['year' => [2020, 2021, 2022]];

4. Values Must Be Unique Across All Keys

All values across all keys must be unique. This is required for the reverse key mapping:

// Valid - all values are unique
$input = [
    'size' => ['small', 'medium', 'large'],
    'fit' => ['slim', 'regular', 'relaxed'],
];

// Invalid - 'M' appears in both keys
$input = [
    'size' => ['S', 'M', 'L'],
    'gender' => ['M', 'F'],
];

🔧 Error Handling

The generator throws InvalidArgumentException with descriptive messages for invalid inputs:

try {
    $generator = new CombinationGenerator();
    $combinations = $generator->generate($input);
} catch (\InvalidArgumentException $e) {
    // Handle validation errors
    echo "Invalid input: " . $e->getMessage();
}

Common Error Messages

  • "Section key must be non numeric key." - A numeric key was used
  • "Section values must be array, but {type} given." - A non-array value was provided
  • "Section item value must be a string, but {type} given." - A non-string item in the value array
  • "Value {value} is not unique..." - Duplicate value found across different keys

💡 Use Cases

  • E-commerce: Generate all product variants (size, color, material combinations)
  • Testing: Create test matrices for cross-browser/cross-platform testing
  • Configuration: Enumerate all possible configuration combinations
  • Scheduling: Generate time slot combinations (day, hour, room)
  • Data Analysis: Create exhaustive scenario combinations for analysis
  • Form Generation: Build dynamic form option combinations

👤 Author

Jan Barášek - https://baraja.cz

📄 License

baraja-core/combinations is licensed under the MIT license. See the LICENSE file for more details.

baraja-core/combinations 适用场景与选型建议

baraja-core/combinations 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 45.78k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2020 年 11 月 01 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 baraja-core/combinations 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 baraja-core/combinations 我们能提供哪些服务?
定制开发 / 二次开发

基于 baraja-core/combinations 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 45.78k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 6
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

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

其他信息

  • 授权协议: Unknown
  • 更新时间: 2020-11-01