Home  >  Article  >  Backend Development  >  A simple example of randomly displaying pictures in php_PHP tutorial

A simple example of randomly displaying pictures in php_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:24:581025browse

The main content of this section:
Introducing a php function that randomly displays pictures, mostly used for blog display windows, random display of photos, etc.

Example:

Copy code The code is as follows:

/**
* Function: Randomly display pictures
* Filename : img.php
* Usage:
*                                                                                                                            folder=images2/>
* */
if($_GET['folder']){
$folder=$_GET['folder'];
}else{
$folder='/images/';
}
//The location to store image files
$path = $_SERVER['DOCUMENT_ROOT']."/".$folder;
$files=array();
if ($handle =opendir("$path")) {
while(false !== ($file = readdir($handle))) {
if ($file != "." && $file != ". .") {
if(substr($file,-3)=='gif' || substr($file,-3)=='jpg') $files[count($files)] = $file ;
                                                                                                                                                        ($files[$random],-3)=='gif') header("Content-type: image/gif");
elseif(substr($files[$random],-3)==' jpg') header("Content-type: image/jpeg");
readfile("$path/$files[$random]");
?>






http://www.bkjia.com/PHPjc/825250.html
www.bkjia.comtrue

http: //www.bkjia.com/PHPjc/825250.htmlTechArticleThe main content of this section: Introducing a php function that randomly displays pictures, mostly used for blog display windows and random photos. Display etc. Example: Copy the code The code is as follows: ?php /** * Function:...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn