Php randomly displays the specified folder ,. Php randomly displays a specified folder. This article describes how php randomly displays a specified folder. Share it with you for your reference. The code is as follows: php randomly displays the specified folder,
This example describes how to randomly display a specified folder in php. Share it with you for your reference. The details are as follows:
This code randomly selects an image from the specified server folder for display. The image format is .gif, .jpg, .png.
<? Php // This will get an array of all the gif, jpg and png images in a folder $ img_array = glob ("/path/to/images /*. {gif, jpg, png} ", GLOB_BRACE); // Pick a random image from the array $ img = array_rand ($ img_array ); // Display the image on the page echo '';?>
I hope this article will help you with php programming.
Examples in this article describes how to randomly display a specified folder in php. Share it with you for your reference. The code is as follows...