我有 6 个 html 文件(test1.html、test2.html、test3.html 等),我希望其中 3 个随机显示,没有重复。然后每次加载网页时都会使用不同的顺序和文件。
说:test1.html,test4.html,test2.html
或者:test5.html、test2.html、test3.html
或者:test3.html、test6.html、test2.html
等等......没有重复
我从上一个问题中得到了这个 php 代码,这是一个好的开始。它只包含 1 个我需要 3 个的 html 文件?
<?php
$files = glob('*.html');
$random_file = $files[array_rand($files)];
include($random_file);
?>
非常感谢任何帮助,谢谢。