php读取文件夹图片
21-06-02
slbcun
276℃
0
<?php $dir = './images/'; if( isset($_GET['path']) ){ $dir = $dir."/".trim($_GET['path']); } if( isset($_GET["act"]) && $_GET["act"]=="del" ){ @unlink($_GET["delPath"]); getFile( $dir ); }else{ getFile( $dir ); } function getFile( $dir ){ if (is_dir($dir)) { if ($dh = opendir($dir)) { while (($file = readdir($dh)) !== false) { if ($file!="." && $file!="..") { if( is_dir($dir.'/'.$file) ){ echo '<a href="'.$dir.'/'.$file.'">'.$file.'</a> <a href="?path='.$file.'">打开</a>'; }elseif($file!="." && $file!="..") { echo '<a href="'.$dir.'/'.$file.'"><img src="'.$dir.'/'.$file.'" width="100px"/></a> <a href="?delPath='.$dir.'/'.$file.'&act=del">删除</a><br />'; } } } closedir($dh); } } } ?>