PHP图片直读代码

发布时间:2008年03月25日      浏览次数:753 次
保存为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>\n";}
}
}
closedir($handle);
/****************************************************/
?>
免责声明:本站相关技术文章信息部分来自网络,目的主要是传播更多信息,如果您认为本站的某些信息侵犯了您的版权,请与我们联系,我们会即时妥善的处理,谢谢合作!