试试这个:
$indexes=array_rand($files,2);
$file1=$files[$indexes[0]];
$file2=$files[$indexes[1]];
array_rand 可以检索多个键,只需指定 2 作为第二个参数。在这种情况下,它返回 am 数组。
function random_pics($dir = 'img',$howMany=2) {
$files = glob($dir . '/*.png');
if($howMany==0) $howMany=count($files); // make 0 mean all files
$indexes = array_rand($files,$howMany);
$out=array();
if(!is_array($indexes)) $indexes=array($indexes); // cover howMany==1
foreach($indexes as $index) {
$out[]=$files[$index];
}
return $out;
}
$theFiles=random_pics();
<?php echo $theFiles[0]; ?>
<?php echo $theFiles[1]; ?>