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.
以下のコードのように、フォルダーから写真をランダムに取得していました。
$imagesDir = 'tags/chilli_crab/'; $images = glob($imagesDir . '*.{jpg,jpeg,png,gif}', GLOB_BRACE); $randomImage = $images[array_rand($images)];
これを変更して、ランダムな写真ではなく最新の写真を取得するにはどうすればよいですか? ありがとう!!!!!!
array_multisort(array_map('filemtime', $images), SORT_NUMERIC, SORT_DESC, $images); $latestimage = $images[0];