ホームページ  >  記事  >  バックエンド開発  >  php は指定されたパスの下にある画像を表示します_PHP チュートリアル

php は指定されたパスの下にある画像を表示します_PHP チュートリアル

WBOY
WBOYオリジナル
2016-07-21 15:43:291129ブラウズ

复制代码代码如下:

function getAllDirAndFile($path)
{
if(is_file($path))
{
if(isImage($path))
{
$str="";
$str.='';
$str.="";
$path=iconv("gb2312","utf-8",$path);
$str.="";
$str.="";
$str.="
".$path."
";
エコー $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=strto lower($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 を返します。
}

www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/320734.html技術記事関数 getAllDirAndFile($path) { if(is_file($path)) { if(isImage($path)) { $str=""; $str.='table style="border:solid 1px blue;" width="95%" ; $str.="tr...
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。