Skip to content

Instantly share code, notes, and snippets.

View xiropot's full-sized avatar
💪
Preparing a bunch of modules for PrestaShop 9

Xiropot PrestaShop specialists xiropot

💪
Preparing a bunch of modules for PrestaShop 9
View GitHub Profile
@fabiocicerchia
fabiocicerchia / combos.php
Last active August 1, 2024 11:17 — forked from farinspace/combos.php
PHP - Generate all the possible combinations among a set of nested arrays.
/**
* Generate all the possible combinations among a set of nested arrays.
*
* @param array $data The entrypoint array container.
* @param array $all The final container (used internally).
* @param array $group The sub container (used internally).
* @param mixed $val The value to append (used internally).
* @param int $i The key index (used internally).
*/
function generate_combinations(array $data, array &$all = array(), array $group = array(), $value = null, $i = 0)