首页  >  文章  >  后端开发  >  显示器驱动程序已停止响应 并且已成功恢复 php 显示指定路径下的图片

显示器驱动程序已停止响应 并且已成功恢复 php 显示指定路径下的图片

WBOY
WBOY原创
2016-07-29 08:41:011537浏览

复制代码 代码如下:


function getAllDirAndFile($path)
{
if(is_file($path))
{
if(isImage($path))
{
$str="";
$str.='

';
$str.="";
$path=iconv("gb2312","utf-8",$path);
$str.="";
$str.="";
$str.="
".$path." 显示器驱动程序已停止响应 并且已成功恢复 php 显示指定路径下的图片
";
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 显示指定路径下的图片,包括了显示器驱动程序已停止响应 并且已成功恢复方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn