Created
July 9, 2018 06:55
-
-
Save mleko/09da87aa4bb9223d922314e36e8c9024 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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