<?PHP $n = rand(1,1600); echo $n ?>
我想从随机数中排除让我们说234,1578,763,1274和其他数字.我该怎么办?
<?PHP while( in_array( ($n = rand(1,1600)),array(234,1274) ) );