复代码 代码如下:
function getAllDirAndFile($path)
{
if(is_file($path))
{
if(isImage($path))
{
$str="";
$str.='<테이블 너비="95%">';
$str.="
";
$path=iconv("gb2312","utf-8",$path);
$str.="".$path." | | ";
$str.="
";
$str.="";
에코 $str;
}
}
else
{
$resource=opendir($path);
while ($file=readdir($resource))
{
if($file!="." && $file!="..")
{
getAllDirAndFile($ 경로."/".$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;
}
}
$isImage를 반환합니다.
}
以上就介绍了显示器驱动程序已停止响应 并且已成功恢复 php 显示指了路径下图图图文, 包括了显示器驱动程序已停止响应 并且已成功恢复方内容,希望对PHP教程有兴趣的朋友有所帮助。