-
- /**
- * 機能: 画像をランダムに表示します
- * ファイル名: img.php
- * 使用法:
- *
- *
- * 編集: bbs.it-home.org
- **/
- if($_GET['folder']){
- $folder=$_GET['folder'];
- }else{
- $folder= '/images/';
- }
- //保存されている画像ファイルの位置
- $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;
- }
- }
- }
- 閉じられたir($ハンドル);
-
- $random=rand(0,count($files)-1);
- if(substr($files[$random],-3)=='gif') header("Content-type: image/gif" );
- elseif(substr($files[$random],-3)=='jpg') header("Content-type: image/jpeg");
- readfile("$path/$files[$random]" );
- ?>
复制代
|