這篇文章將為大家詳細講解有關(guān)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; }
關(guān)于“discuz圖片處理縮略圖顯示的方法示例”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
本文標題:discuz圖片處理縮略圖顯示的示例-創(chuàng)新互聯(lián)
網(wǎng)站URL:http://jinyejixie.com/article16/dsspgg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供自適應(yīng)網(wǎng)站、搜索引擎優(yōu)化、外貿(mào)網(wǎng)站建設(shè)、做網(wǎng)站、用戶體驗、小程序開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容