php 显示指定路径下的图片
程序员文章站
2022-06-29 18:11:31
复制代码 代码如下:function getalldirandfile($path) { if(is_file($path)) { if(isimage($path)) {...
复制代码 代码如下:
function getalldirandfile($path)
{
if(is_file($path))
{
if(isimage($path))
{
$str="";
$str.='<table style="border:solid 1px blue;" width="95%">';
$str.="<tr>";
$path=iconv("gb2312","utf-8",$path);
$str.="<td width=80%>".$path."</td><td width=15%><img src=".$path." style='width:50px;height:50px;'></td>";
$str.="</tr>";
$str.="</table>";
echo $str;
}
}
else
{
$resource=opendir($path);
while ($file=readdir($resource))
{
if($file!="." && $file!="..")
{
getalldirandfile($path."/".$file);
}
}
}
}
function isimage($filepath)
{
$filetypearray=array("jpg","png","bmp","jpeg","gif","ico");
$filepath=strtolower($filepath);
$lastposition=strrpos($filepath,".");
$isimage=false;
if($lastposition>=0)
{
$filetype=substr($filepath,$lastposition+1,strlen($filepath)-$lastposition);
if(in_array($filetype,$filetypearray))
{
$isimage=true;
}
}
return $isimage;
}
上一篇: 浙江高校排名2020最新排名-浙江省所有大学排名(本科大专都有)
下一篇: PHP无敌近乎加密方式!