PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP基础 >> 基础文章 >> 

图片直读代码

图片直读代码

来源:互联网  作者:未知  发布时间:2008-01-13
保存为index.php放在你的图片目录里面中国站长资讯网

保存为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"<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
); 
/****************************************************/ 
?>

Tags: 代码   图片    
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号