We can put the background image into a folder, use the glob() function in PHP to return the folder where the image is located, and then use the rand() function to randomly call the folder in the folder. Picture, just set the called picture as the background picture.
Recommended: php server
Randomly generate background image PHP code:
<?php /** * PHP随机图显示 */ header('Content-Type: text/html; charset=UTF-8'); $img_array = glob("./img/*.jpg",GLOB_BRACE); $img = array_rand($img_array); header("location:.$img_array[$img]"); ?>
The above is the detailed content of How to express random background image in php. For more information, please follow other related articles on the PHP Chinese website!