array_rand() print ramdom keys of an array into another array, let print the values using those keys
<?php
$arr=array(100,222,11,333,994,8844,13,113,913);
$rand=array_rand($arr,3);
foreach($rand as $key) {
echo $arr[$key]."<br>";
}
?>
No hay comentarios:
Publicar un comentario