php 显示指定路径下的图片
作者:bea
代码如下: 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
代码如下:
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;
}
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- 网页游戏开发入门教程二(游戏模式+系统)
- 初学CAKEPHP 基础教程
- PHP+MySQL 制作简单的留言本
- PHP+XML 制作简单的留言本 图文教程
- php 调用远程url的六种方法小结
- phpmailer 中文使用说明(简易版)
- PHP 程序员应该使用的10个组件
- 基于HTTP长连接的"服务器推"技术的php 简易聊天室
- php 远程包含文件漏洞分析
- php UTF8 文件的签名问题
- PHP+MySQL 手工注入语句大全 推荐
- php 攻击方法之谈php+mysql注射语句构造
- PHP 文件上传源码分析(RFC1867)
- 浅谈PHP 闭包特性在实际应用中的问题
- php实现jQuery扩展函数
- PHP 读取和修改大文件的某行内容的代码
- PHP 批量删除数据的方法分析
- ThinkPHP php 框架学习笔记
- php pack与unpack 摸板字符字符含义