保存为index.php放在你的图片目录里面中国站长资讯网。
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"<a href=".$path."/".$file." target="_blank" alt="点击打开新窗口浏览"><img src=".$path."/".$file." border="0" onload="if(this.height>150) {this.height=150;this.width=150*this.width/this.height;}"></a>
";} 数据挖掘实验室
}
}
closedir($handle);
/****************************************************/
?>