php 显示指定路径下的图片_php技巧
程序员文章站
2022-05-22 21:22:24
...
复制代码 代码如下:
function getAllDirAndFile($path)
{
if(is_file($path))
{
if(isImage($path))
{
$str="";
$str.='
".$path." | "; |
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;
}
推荐阅读
-
php判断数组中是否存在指定键(key)的方法_php技巧
-
microsoft office word 2003下载 php让图片可以下载的代码第1/2页
-
php显示指定目录下子目录的方法,php指定目录
-
PHP 采集获取指定网址的内容_php技巧
-
简单的PHP图片上传程序_php技巧
-
php-js如何将canvas生成的图像保存为图片,放到指定位置
-
PHP正则提取不包含指定网址的图片地址的例子_PHP教程
-
php下用GD生成生成缩略图的两个选择和区别_php技巧
-
安装php时,--with-mysql指定的是哪个路径呢?
-
DISCUZ在win2003环境下 Unable to access ./include/common.inc.php in... 的问题终极解决方案_php技巧