Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,927 questions

51,860 answers

573 users

How to create permutations of words without repetition in PHP

1 Answer

0 votes
function permutations_of_words($items, $perms = array()) {
    if (empty($items)) {
        echo implode(' ', $perms) . "\n";
    } else {
        for ($i = 0; $i < count($items); $i++) {
            $newItems = $items;
            $newPerms = $perms;
            list($foo) = array_splice($newItems, $i, 1);
            array_unshift($newPerms, $foo);
            permutations_of_words($newItems, $newPerms);
        }
    }
}

$words = array("PHP", "scripting", "language");

permutations_of_words($words);



/*
run:

language scripting PHP
scripting language PHP
language PHP scripting
PHP language scripting
scripting PHP language
PHP scripting language

*/

 



answered Jan 20, 2025 by avibootz

Related questions

1 answer 99 views
2 answers 98 views
1 answer 90 views
1 answer 105 views
1 answer 90 views
2 answers 1,840 views
...