您现在的位置是:首页 > cms教程 > Discuz教程Discuz教程

discuz图片处理缩略图显示的方法

书翠2025-06-23Discuz教程已有人查阅

导读​​​​​​​discuz图片处理缩略图显示,discuz图片处理缩略图显示的方法介绍

function thumblist($pid, $width = 0, $height = 0, $maximgcount = 3, $tid = 0){
global $_G;
if(!$pid) return array();
$width = intval($width);
$height = intval($height);
$maximgcount = intval($maximgcount);
$tid = intval($tid);
$maximgcount = $maximgcount <= 0 ? 3 : $maximgcount;
$maximgcount = min($maximgcount, 3);
$width = $width <= 0 ? 200 : $width;
$height = $height <= 0 ? 100 : $height;
if(!$tid) {
$tid = C::t('forum_post')->fetch_tid_by_pid($pid);
}
if(!$tid) return array();
$attachments = C::t('forum_attachment_n')->fetch_all_by_id('tid:'.$tid, 'pid', $pid, 'aid', true, false, false, $maximgcount);
$list = array();
$count = 0;
$nums = count($attachments);
if($nums ==1){
$width = 692;
$height =708;
} elseif ($nums == 2) {
$width = 660;
$height = 700;
} else if($nums ===3){
$width = 440;
$height = 532;
}
foreach($attachments as $aid=>$attachment) {
$bigimage = $_G['setting']['attachurl'].'forum/'.$attachment['attachment'];
$thumbfile = 'image/'.helper_attach::makethumbpath($attachment['aid'], $width, $height);
if(is_file($_G['setting']['attachdir'].$thumbfile)) {
$thumbfile = $_G['setting']['attachurl'].$thumbfile;
} else {
$thumbfile = '/'.getforumimg($attachment['aid'], 0, $width, $height,'fixwr');
}
if($attachment['width'] < $width) $thumbfile = $bigimage;
$list[] = array('thumb'=>$thumbfile, 'attachment'=>$bigimage, 'aid'=>$attachment['aid']);
$count++;
if($count >= $maximgcount) break;
}
return $list;
}
discuz图片处理缩略图显示

本文标签:

很赞哦! ()

相关源码

  • (PC+WAP)蓝色智能环保机械设备网站营销型pbootcms模板下载本模板基于PbootCMS系统开发,为环保设备制造企业设计,特别适合展示环保机械、智能装备等产品。采用响应式技术,确保各类设备参数和技术方案在不同终端上都能清晰展示。查看源码
  • (PC+WAP)蓝色低碳环保隔断板装修装饰类网站pbootcms源码下载本款基于PbootCMS开发的网站模板为活动隔断板、装修装饰行业打造,特别适合移动隔断、环保隔断、办公分区等产品的展示与推广。查看源码
  • (PC+WAP)绿色市政园林建筑设计绿化营销型pbootcms网站模板本模板基于PbootCMS系统开发,为园林绿化、景观设计类企业设计,特别适合市政园林、景观工程、绿化养护等企业使用。采用双端适配技术查看源码
  • (自适应)营销型健身器材产品设备类pbootcms模板网站为健身器材企业打造的营销型网站模板,基于PbootCMS开源内核开发。采用HTML5响应式架构,PC与移动端数据实时同步,适配多终端展示场景。查看源码
  • (自适应响应式)蓝色律师事务所法务团队网站pbootcms模板为律师事务所和法律服务机构打造的专业网站模板,展现法律专业性与权威性,手工编写标准DIV+CSS代码,结构清晰优化,确保高效运行,自动适配电脑、平板和手机等各类设备,提供更好浏览体验查看源码
  • (PC+WAP)红色驾校培训学车在线预约源码下载基于PbootCMS内核开发的驾校培训专用网站模板,深度适配驾驶培训行业展示需求。采用PC与移动端同步响应设计,单一后台统一管理内容数据,更换图文素材后可快速转变为其他行业网站。查看源码
分享笔记 (共有 篇笔记)
验证码:

本栏推荐