phpbar.de logo

Mailinglisten-Archive

[php] Element aus Array entfernen und neu sortieren

[php] Element aus Array entfernen und neu sortieren

Christian Heimerl christian.heimerl at internetx.de
Don Nov 22 15:28:52 CET 2007


Hallo,

ja das wäre toll. Wie Sebastian schon geschrieben hatte, ist shuffle() 
oder array_rand()
deine Funktion.

Ich empfehle array_rand() siehe PHP-Doku

|<?php
srand ((float) microtime() * 10000000);
$input = array ("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
$rand_keys = array_rand ($input, 2);
print $input[$rand_keys[0]]."\n";
print $input[$rand_keys[1]]."\n";
?> |


Grüsse
Christian

php::bar PHP Wiki   -   Listenarchive