このセクションの主な内容:
主にブログの表示ウィンドウや写真のランダム表示などに使用される、写真をランダムに表示するphp関数を紹介します。
例:
コードをコピーします コードは次のとおりです:
/**
*関数:ランダムに写真を表示** filename:img.php
*使用法:
**/
if($_GET['folder']){
$folder= $_GET[' フォルダー'];
}else{
$folder='/images/';
}
//画像ファイルを保存する場所
$path = $_SERVER['DOCUMENT_ROOT']."/".$フォルダー;
$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; )=='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.com
true
http://www.bkjia.com/PHPjc/825250.html
技術記事
このセクションの主な内容: 主にブログの表示ウィンドウや写真のランダム表示などで使用される、写真をランダムに表示するphp関数を紹介します。 例: コードをコピーします コードは次のとおりです: ?php /** * 関数:...