discuz 이미지 처리 썸네일 표시 방법 소개

青灯夜游
풀어 주다: 2021-02-01 11:57:26
앞으로
4046명이 탐색했습니다.

discuz 이미지 처리 썸네일 표시 방법 소개

관련 추천: "discuz tutorial"

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(&#39;forum_post&#39;)->fetch_tid_by_pid($pid);
    }
 
    if(!$tid) return array();
    $attachments = C::t(&#39;forum_attachment_n&#39;)->fetch_all_by_id(&#39;tid:&#39;.$tid, &#39;pid&#39;, $pid, &#39;aid&#39;, 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[&#39;setting&#39;][&#39;attachurl&#39;].&#39;forum/&#39;.$attachment[&#39;attachment&#39;];
        $thumbfile = &#39;image/&#39;.helper_attach::makethumbpath($attachment[&#39;aid&#39;], $width, $height);
        if(is_file($_G[&#39;setting&#39;][&#39;attachdir&#39;].$thumbfile)) {
            $thumbfile = $_G[&#39;setting&#39;][&#39;attachurl&#39;].$thumbfile;
        } else {
            $thumbfile = &#39;/&#39;.getforumimg($attachment[&#39;aid&#39;], 0, $width, $height,&#39;fixwr&#39;);
        }
        if($attachment[&#39;width&#39;] < $width) $thumbfile = $bigimage;
        $list[] = array(&#39;thumb&#39;=>$thumbfile, &#39;attachment&#39;=>$bigimage, &#39;aid&#39;=>$attachment[&#39;aid&#39;]);
        $count++;
        if($count >= $maximgcount) break;
    }
 
    return $list;
}
로그인 후 복사

discuz 이미지 처리 썸네일 표시

더 많은 프로그래밍 관련 지식을 보려면 다음을 방문하세요: Programming Teaching! !

위 내용은 discuz 이미지 처리 썸네일 표시 방법 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:csdn.net
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!