Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用此代码获取图像
$images = glob($reuter. '/'.$url_places.'/*.{jpg,gif}', GLOB_BRACE);
效果很好,但是.. 它每次都按 ASC 顺序抓取图像(即 1、2、3.jpg)。
无论如何,为了使(图像)滑块更有趣,我需要将这些图像随机取出(所有图像,而不仅仅是一个),例如 3、1、2 jpg 或类似图像。
任何线索如何使用glob()?谢谢...
glob()
只是shuffle结果:
shuffle
shuffle($images);