|
发表于 2007 年 3 月 11 日 20:53:37
|
显示全部楼层
http://uunx.free.fr/logo/index.php
<?
$imgtype=array(bmp,jpg,jpeg,png,gif);
/****************************************************/
$imgtype_count=count($imgtype);
$path=".";
$handle=opendir($path);
while ($file = readdir($handle)){
if (is_dir($file)) {continue;}
$type = explode(".",$file);
$type = $type[1];
for($i=0;$i<$imgtype_count;$i++){
if($type==$imgtype[$i]){
echo"<img src=".$path."/".$file.">\n";
}
}
}
closedir($handle);
/****************************************************/
?> |
|