<?php function randome_array($n) { $array=array(); $x = 1; while($x <= $n) { $temp = mt_rand(0,1); array_push($array,$temp); $x++; } return $array; } print_r(randome_array(5));
You have javascript disabled. You will not be able to edit any code.