Vytvořit náhodné slovo php

Příklady kódu

1
0

náhodné slovo pomocí wordlist php

// Read the whole file into a array.
$file = file('File Location');

// Getting the Words Count in the file.
$wCount = count($file);

// Printing out the random word.
echo $file[rand(0, $wCount - 1)];

// This is a one liner.
echo file('File Location')[rand(0, count(file('File Location')) - 1)];
0
0

rand string php

    function RandomString()
    {
        $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
        $randstring = '';
        for ($i = 0; $i < 10; $i++) {
            $randstring = $characters[rand(0, strlen($characters))];
        }
        return $randstring;
    }

V jiných jazycích

Tato stránka je v jiných jazycích

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................