Skip to content

Instantly share code, notes, and snippets.

@mleko
Created July 9, 2018 06:55
Show Gist options
  • Save mleko/09da87aa4bb9223d922314e36e8c9024 to your computer and use it in GitHub Desktop.
Save mleko/09da87aa4bb9223d922314e36e8c9024 to your computer and use it in GitHub Desktop.
<?php
function array_permute($arrays) {
$set = array_shift($arrays);
foreach($arrays as $sub) {
$newSet = [];
foreach($set as $prefix) {
foreach($sub as $suffix){
$newSet[] = $prefix.$suffix;
}
}
$set = $newSet;
}
return $set;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment