Random ... aber wie ??

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • #16
    vielleicht indem man das wissen von TimoGoebel und Campus vereint ?

    PHP-Code:
    $datei "words.dat";
    $input trim(implode('',file($datei)));
    $input explode("|"$file);
    srand((double)microtime()*100000);
    $rand_keys array_rand($inputcount($input)-1);
    for(
    $i=0;count($rand_keys)>$i;$i++) {
    $endarray.=$input[$rand_keys[$i]]."<br>";
    }
    echo 
    $endarray
    meine Projekte bestaunen: http://www.kleiza.de

    Kommentar


    • #17
      hi !

      danke für den code.

      leider gibt es nun noch eine fehlermeldung:

      Warning: Second argument to array_rand() has to be between 1 and the number of elements in the array in /htdocs/test/test.php on line 6

      vielen Dank!

      cu,
      HANSI

      Kommentar


      • #18
        muss natürlich so heissen:
        PHP-Code:
        $datei "words.txt";
        $input trim(implode('',file($datei)));
        $input explode("|"$input); //input nicht file, beim umshcreiben vergessen
        srand((double)microtime()*100000);
        $rand_keys array_rand($inputcount($input)-1);
        for(
        $i=0;count($rand_keys)>$i;$i++) {
        $endarray.=$input[$rand_keys[$i]]."<br>";
        }
        echo 
        $endarray
        meine Projekte bestaunen: http://www.kleiza.de

        Kommentar

        Lädt...
        X