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

A simple example of randomly displaying pictures in php_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 10:24:58
Original
1160 people have browsed it

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:...
Related labels:
php
Statement of this Website
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template