php 显示指定路径下的图片
程序员文章站
2022-05-03 13:00:38
...
复制代码 代码如下:';
";
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;
}
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;
}
上一篇: 构建插件式的应用程序框架(六)-通讯机制
下一篇: apusic应用服务器配置默认应用
推荐阅读
-
php-js如何将canvas生成的图像保存为图片,放到指定位置
-
PHP正则提取不包含指定网址的图片地址的例子_PHP教程
-
安装php时,--with-mysql指定的是哪个路径呢?
-
access-PHP将十六进制流转换成图片显示在页面中的问题
-
Apache服务器下防止图片盗链的办法,_PHP教程
-
详解PHP如何把16进制的图片数据显示到网页
-
php图片缩放代码-按比例缩放或截取指定大小的缩略图 非常好用的一个方法_PHP教程
-
博客个人中心的所有动态显示部分内容和图片用PHP如何实现
-
WordPress中获取指定分类及其子分类下的文章数目_php实例
-
php文件操作小结(删除指定文件/获取文件夹下的文件名/读取文件夹下图片名)