vote up 1 vote down star

What is the most efficient way to generate all the combinations, dispositions and permutations of an array in PHP?

flag

1 Answer

vote up 1 vote down check

Here is code to get all permutations:

http://www.php.net/manual/en/function.shuffle.php#90615

With the code to get the power set, permutations are those of maximal length, the power set should be all combinations. I have no idea what dispositions are, so if you can explain them, that would help.

link|flag
good research VL – memnoch_proxy Nov 9 at 2:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.