randimage.php
復制代碼 代碼如下:
<?php
/*
+---------------------------------------------------------+
| By Bleakwind http://www.weaverdream.com
+---------------------------------------------------------+
*/
$dir = "images/";//圖片目錄,注意是按照名字排序顯示的...
$imgwidth = 0;//圖片寬度,為0則為原始大小
$iforder = 1;//順序顯示還是隨機顯示,1為順序顯示,0為隨機顯示
$ifcircle = 0;//順序顯示的時候是否循環播放,1為循環播放,0為不循環
session_start();
if($imgwidth==0){$imgwidth=="";}else{$imgwidth=="width='".$imgwidth."'";}
$handle=opendir($dir);
while ($file_name=readdir($handle)){
if(($file_name!==".")&&($file_name!=="..")){$file_list[]=$file_name; }
}
closedir($handle);
if($iforder==1){
if(isset($_SESSION['sess_order'])){
if($_SESSION['sess_order']<count($file_list)-1){
$_SESSION['sess_order']++;
}else{
if($ifcircle == 1){
$_SESSION['sess_order']=0;
}
}
}else{
$_SESSION['sess_order']=0;
}
$i=$_SESSION['sess_order'];
}else{
$num=count($file_list)-1;
$i=rand(0,$num);
}
readfile($dir.$file_list[$i]);
?>
調用
復制代碼 代碼如下:
<img src="randimage.php" border="0">