infinitizon
MIS
I have an array like this
I want to get all combinations like so
Notice it is only a combination of the individual elements in the array (no individuals or doubles).
Any ideas please
____________________
A Pessimist sees every calamity in every opportunity but an Optimist sees every opportunity in every calamity
Think about it.
Code:
$myArray = array('a', 'b', 'c');
Code:
a b c
a c b
b a c
b c a
c a b
c b a
Any ideas please
____________________
A Pessimist sees every calamity in every opportunity but an Optimist sees every opportunity in every calamity
Think about it.