⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 select_images.php

📁 dedeCMS系统
💻 PHP
字号:
<?
require_once(dirname(__FILE__)."/config.php");

if(empty($activepath)) $activepath = "";
if(empty($imgstick)) $imgstick = "";

$activepath = str_replace("..","",$activepath);
$activepath = ereg_replace("^/{1,}","/",$activepath);


if($imgstick=="big"){
  if(strlen($activepath) < strlen($cfg_image_dir)){
	  $activepath = $cfg_image_dir;
  }
}
else{
	if(strlen($activepath) < strlen($ddcfg_image_dir)){
	  $activepath = $ddcfg_image_dir;
  }
}

$inpath = $cfg_basedir.$activepath; 
$activeurl = "..".$activepath;
if(empty($f)) $f="form1.picname";

if(empty($comeback)) $comeback = "";

?>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=gb2312'>
<title>图片浏览器</title>
<link href='base.css' rel='stylesheet' type='text/css'>
<style>
.linerow {border-bottom: 1px solid #CBD8AC;}
.napisdiv {left:40;top:3;width:150;height:100;position:absolute;z-index:3}
</style>
</head>
<body background='img/allbg.gif' leftmargin='0' topmargin='0'>
<div id="floater" class="napisdiv">
<a href="javascript:nullLink();" onClick="document.picview.src='img/picviewnone.gif';"><img src='img/picviewnone.gif' name='picview' border='0' alt='单击关闭预览'></a>
</div>
<SCRIPT language=JavaScript src="js/float.js"></SCRIPT>
<SCRIPT language=JavaScript>
function nullLink()
{
	return;
}
function ReturnImg(reimg)
{
	window.opener.document.<?=$f?>.value=reimg;
	if(window.opener.document.getElementById('picview')){
		window.opener.document.getElementById('picview').src = reimg;
	}
	if(document.all) window.opener=true;
  window.close();
}
</SCRIPT>
<table width='100%' border='0' cellspacing='0' cellpadding='0' align="center">
<tr> 
<td colspan='4' align='right'>
<table width='100%' border='0' cellpadding='0' cellspacing='1' bgcolor='#CBD8AC'>
<tr bgcolor='#FFFFFF'> 
<td colspan='4'>
<table width='100%' border='0' cellspacing='0' cellpadding='2'>
<tr bgcolor="#CCCCCC"> 
<td width="8%" align="center" class='linerow' bgcolor='#EEF4EA'><strong>预览</strong></td>
<td width="47%" align="center" background="img/wbg.gif" class='linerow'><strong>点击名称选择图片</strong></td>
<td width="15%" align="center" bgcolor='#EEF4EA' class='linerow'><strong>文件大小</strong></td>
<td width="30%" align="center" background="img/wbg.gif" class='linerow'><strong>最后修改时间</strong></td>
</tr>
<tr>
<td class='linerow' colspan='4' bgcolor='#F9FBF0'>
点击“V”预览图片,点击图片名选择图片,显示图片后点击该图片关闭预览。
</td>
</tr>
<?
$dh = dir($inpath);
$ty1="";
$ty2="";
while($file = $dh->read()) {
 $filesize = filesize("$inpath/$file");
 $filesize=$filesize/1024;
 if($filesize!="")
 if($filesize<0.1){
   @list($ty1,$ty2)=split("\.",$filesize);
   $filesize=$ty1.".".substr($ty2,0,2);
 }
 else{
   @list($ty1,$ty2)=split("\.",$filesize);
   $filesize=$ty1.".".substr($ty2,0,1);
 }
 $filetime = filemtime("$inpath/$file");
 $filetime = strftime("%y-%m-%d %H:%M:%S",$filetime);
 if($file == ".") continue;
 else if($file == ".."){
   if($activepath == "") continue;
   $tmp = eregi_replace("[/][^/]*$","",$activepath);
   $line = "\n<tr>
   <td class='linerow' colspan='2'>
   <a href='select_images.php?imgstick=$imgstick&f=$f&activepath=".urlencode($tmp)."'>上级目录<img src=img/dir2.gif border=0 width=16 height=13></a></td>
   <td colspan='2' class='linerow'> 当前目录:$activepath</td>
   </tr>
   ";
   echo $line;
}
else if(is_dir("$inpath/$file")){
   if(eregi("^_(.*)$",$file)) continue; #屏蔽FrontPage扩展目录和linux隐蔽目录
   if(eregi("^\.(.*)$",$file)) continue;
   $line = "\n<tr>
   <td bgcolor='#F9FBF0' class='linerow' colspan='2'>
   <a href='select_images.php?imgstick=$imgstick&f=$f&activepath=".urlencode("$activepath/$file")."'><img src=img/dir.gif border=0 width=16 height=13>$file</a></td>
   <td class='linerow'> </td>
   <td bgcolor='#F9FBF0' class='linerow'> </td>
   </tr>";
   echo "$line";
}
else if(eregi($cfg_imgtype,$file)){
   $reurl = "$activeurl/$file";

   //if(!ereg("/$",$cfg_indexurl)) $cfg_indexurl = $cfg_indexurl."/";
   //$reurl = $cfg_indexurl.ereg_replace("^\.\./","",$reurl);
   $reurl = ereg_replace("^\.\.","",$reurl);
   
   if($file==$comeback) $lstyle = " style='color:red' ";
   else  $lstyle = "";

   $line = "\n<tr>
   <td align='center' class='linerow' bgcolor='#F9FBF0'>
   <a href=\"#\" onClick=\"document.picview.src='$reurl';\"><img src='img/picviewnone.gif' width='20' height='14' border='0'></a>
   </td>
   <td class='linerow' bgcolor='#F9FBF0'><a href=\"javascript:ReturnImg('$reurl');\" $lstyle><img src=img/img.gif border=0 width=16 height=13>$file</a></td>
   <td class='linerow'>$filesize KB</td>
   <td align='center' class='linerow' bgcolor='#F9FBF0'>$filetime</td>
   </tr>";
   echo "$line";
 }
}//End Loop
$dh->close();
?>
<tr> 
<td colspan='4' bgcolor='#E8F1DE'>

<table width='100%'>
<form action='select_images_post.php' method='POST' enctype="multipart/form-data" name='myform'>
<input type='hidden' name='activepath' value='<?=$activepath?>'>
<input type='hidden' name='f' value='<?=$f?>'>
<input type='hidden' name='imgstick' value='<?=$imgstick?>'>
<input type='hidden' name='job' value='upload'>
<tr>
<td background="img/tbg.gif" bgcolor="#99CC00">
  &nbsp;上 传: <input type='file' name='imgfile' style='width:200'>
  <input type='checkbox' name='resize' value='1' class='np'>自动缩小
  宽:<input type='text' style='width:30' name='iwidth' value='<?=$cfg_ddimg_width?>'>
  高:<input type='text' style='width:30' name='iheight' value='<?=$cfg_ddimg_height?>'>
  <input type='submit' name='sb1' value='确定'>
</td>
</tr>
</form>
<form action='select_images_post.php' method='POST' name='myform2'>
<input type='hidden' name='activepath' value='<?=$activepath?>' style='width:200'>
<input type='hidden' name='f' value='<?=$f?>'>
<input type='hidden' name='imgstick' value='<?=$imgstick?>'>
<input type='hidden' name='job' value='newdir'>
<tr>
  <td background="img/tbg.gif" bgcolor='#66CC00'> &nbsp;新目录: 
  <input type='text' name='dirname' value='' style='width:150'>
  <input type='submit' name='sb2' value='创建' style='width:40'>
</td>
</tr>
</form>
</table>

</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -