📄 showphoto.php
字号:
<?php
require_once(dirname(__FILE__)."/../include/config_base.php");
require_once(dirname(__FILE__)."/../include/inc_channel_unit.php");
if(!isset($aid)){ exit(); }
$aid = ereg_replace("[^0-9]","",$aid);
if(empty($aid)){ exit(); }
$dsql = new DedeSql(false);
//读取文档信息
$arctitle = "";
$arcurl = "";
$topID = 0;
$arcRow = $dsql->GetOne("Select #@__archives.title,#@__archives.senddate,#@__archives.arcrank,#@__archives.ismake,#@__archives.money,#@__archives.typeid,#@__arctype.topID,#@__arctype.typedir,#@__arctype.namerule From #@__archives left join #@__arctype on #@__arctype.ID=#@__archives.typeid where #@__archives.ID='$aid'");
if(is_array($arcRow)){
$arctitle = $arcRow['title'];
$topID = $arcRow['topID'];
$arcurl = GetFileUrl($aid,$arcRow['typeid'],$arcRow['senddate'],$arctitle,$arcRow['ismake'],$arcRow['arcrank'],$arcRow['namerule'],$arcRow['typedir'],$arcRow['money']);
}
else{
$dsql->Close();
ShowMsg("无法浏览未知文档!","-1");
exit();
}
if(empty($mx)){ $mx=$cfg_album_width; }
$pageGuide = "";
//获取上下幅图片链接
$row = $dsql->GetOne("Select imgurls From #@__addonimages where aid='{$aid}'");
$i = 0;
$nextSrc = "";
$preSrc = "";
$dtp = new DedeTagParse();
$dtp->LoadSource($row['imgurls']);
foreach($dtp->CTags as $ctag){
if($ctag->GetName()=="img"){
if($i==($npos-1)){ $preSrc = trim($ctag->GetInnerText()); }
if($i==($npos+1)){ $nextSrc = trim($ctag->GetInnerText()); }
$i++;
}
}
unset($dtp);
if($cfg_multi_site=='Y'){
if(!preg_match("/^http:/i",$preSrc) && !empty( $preSrc)) $preSrc = $cfg_basehost.$preSrc;
if(!preg_match("/^http:/i",$nextSrc) && !empty($nextSrc)) $nextSrc = $cfg_basehost.$nextSrc;
}
if($preSrc!=""){
$pageGuide .= "<a href='showphoto.php?aid={$aid}&src=".urlencode($preSrc)."&npos=".($npos-1)."'><<上一幅图片</a> ";
}
if($nextSrc!=""){
if($pageGuide!="") $pageGuide .= " | ";
$pageGuide .= "<a href='showphoto.php?aid={$aid}&src=".urlencode($nextSrc)."&npos=".($npos+1)."'>下一幅图片>></a>";
}
$dsql->Close();
require_once($cfg_basedir.$cfg_templets_dir."/plus/showphoto.htm");
exit();
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -